Uses of Class
lists.Item

Packages that use Item
lists   
 

Uses of Item in lists
 

Fields in lists declared as Item
 Item List.first
           
 Item List.last
           
 Item Item.next
           
 

Methods in lists that return Item
static Item List.pop(List list)
          Eintrag vom Anfang der Liste entfernen und ausgeben.
static Item List.get(List list, long ord)
          Bestimmtes (iniziertes) Element der Liste ausgeben.
 

Methods in lists with parameters of type Item
static void List.append(List list, Item item)
          Neuen Eintrag ans Ende der Liste setzen.
static void List.push(List list, Item item)
          Neuen Eintrag an den Anfang der Liste setzen.