Doubly structure with just the Head Node We call it `Doubly` to make it easier to understand when calling this in peoples own local code to understand and experiment with this easily. For example, we can use gotools `go get` command to get this repository cloned inside the $GOPATH/src/github.com/The
| 16 | // |
| 17 | // and call linkedlist.Doubly to create a new doubly linked list. |
| 18 | type Doubly[T any] struct { |
| 19 | Head *Node[T] |
| 20 | } |
| 21 | |
| 22 | // Init initializes double linked list |
| 23 | func (ll *Doubly[T]) Init() *Doubly[T] { |
nothing calls this directly
no outgoing calls
no test coverage detected