mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 09:30:26 +08:00
15 lines
230 B
Go
15 lines
230 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package linkedlist
|
||
|
|
|
||
|
|
type Item struct {
|
||
|
|
prev *Item
|
||
|
|
next *Item
|
||
|
|
|
||
|
|
Value interface{}
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewItem(value interface{}) *Item {
|
||
|
|
return &Item{Value: value}
|
||
|
|
}
|