| 
 | 
          Scala 1.3.0.7 | |||
| Field Summary | |
| 
        final | val hd: b | 
| 
        final | val tl: List[b] | 
| Method Summary | |
| 
        final | def head: bReturns this first element of the list. | 
| 
        final | def isEmpty: BooleanReturns true if the list does not contain any elements. | 
| 
        final | def tail: List[b]Returns this list without its first element. | 
| Methods inherited from java/lang/Object-class | 
| clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, wait, wait, wait | 
| Methods inherited from scala/Any-class | 
| !=, ==, asInstanceOf, isInstanceOf, match | 
| Methods inherited from scala/CaseClass-class | 
| caseArity, caseElement | 
| Methods inherited from scala/Iterable-class | 
| /:, :\, sameElements | 
| Methods inherited from scala/List-class | 
| ::, :::, apply, break, contains, count, diff, drop, dropRight, dropWhile, elements, exists, filter, find, flatMap, foldLeft, foldRight, forall, foreach, indices, init, intersect, last, length, map, mkString, partition, reduceLeft, reduceRight, remove, removeDuplicates, reverse, reverseMap, reverse_:::, sort, span, splitAt, take, takeRight, takeWhile, toString, union, zip | 
| Methods inherited from scala/ScalaObject-class | 
| getType | 
| Methods inherited from scala/Seq-class | 
| copyToArray, indexOf, isDefinedAt, lastIndexOf, stringPrefix, subseq, toList | 
| Field Detail | 
final val hd: b
final val tl: List[b]
| Method Detail | 
final def isEmpty: Boolean
final def head: b
java.lang.RuntimeException if the list is empty.
   
final def tail: List[b]
java.lang.RuntimeException if the list is empty.
   
| 
 | 
          Scala 1.3.0.7 | |||