Files
EdgeNode/internal/utils/linkedlist/item.go

15 lines
230 B
Go
Raw Normal View History

2022-01-12 21:09:00 +08:00
// 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}
}