ListBaseNode 'abstract' base struct for Nodes that are chained in a linked list manner
| 19 | |
| 20 | // ListBaseNode 'abstract' base struct for Nodes that are chained in a linked list manner |
| 21 | type ListBaseNode struct { |
| 22 | next QueueNode |
| 23 | } |
| 24 | |
| 25 | // Data returns data of the node |
| 26 | func (l *ListBaseNode) Data() interface{} { |
nothing calls this directly
no outgoing calls
no test coverage detected