Lines Matching refs:Item
11 type Item interface {16 item Item28 func (list *List) Insert(i Item) {29 item := new(ListItem)30 item.item = i31 item.next = list.head32 list.head = item39 r += i.item.Print()