Value returns the value of the list item.
()
| 23 | |
| 24 | // Value returns the value of the list item. |
| 25 | func (e *ListElement[Key, Value]) Value() Value { |
| 26 | return *e.value.Load() |
| 27 | } |
| 28 | |
| 29 | // Next returns the item on the right. |
| 30 | func (e *ListElement[Key, Value]) Next() *ListElement[Key, Value] { |
no outgoing calls
no test coverage detected