7 lines
58 B
Go
7 lines
58 B
Go
package dp
|
|
|
|
type Link[V any] struct {
|
|
Pos int
|
|
Item V
|
|
}
|