Uses of Class
patron.List

Packages that use List
patron   
 

Uses of List in patron
 

Subclasses of List in patron
 class Empty
          liste vide.
 class NotEmpty
          la classe des listes non vides.
 

Fields in patron declared as List
 List NotEmpty.tail
          le champ reste.
 

Methods in patron that return List
 List NotEmpty.append(List l)
          concatenation purement fonctionnelle.
abstract  List List.append(List l)
          concatenation de deux listes.
 List Empty.append(List l)
          concatenation.
 List NotEmpty.reverse()
          inversion purement fonctionnelle.
abstract  List List.reverse()
          inversion purement fonctionnelle.
 List Empty.reverse()
          inversion.
 

Methods in patron with parameters of type List
 List NotEmpty.append(List l)
          concatenation purement fonctionnelle.
abstract  List List.append(List l)
          concatenation de deux listes.
 List Empty.append(List l)
          concatenation.
 

Constructors in patron with parameters of type List
NotEmpty(int e, List l)
          le constructeur indispensable.