Home | History | Annotate | Download | only in ken

Lines Matching refs:Item

11 type Item interface {
16 item Item
28 func (list *List) Insert(i Item) {
29 item := new(ListItem)
30 item.item = i
31 item.next = list.head
32 list.head = item
39 r += i.item.Print()