|
Scala
1.4.0.3 |
|||
Field Summary | |
final
|
val hd: b
|
final
|
val tl: List[b]
|
Method Summary | |
final
|
def head: b
Returns this first element of the list. |
final
|
def isEmpty: Boolean
Returns 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, ne, notify, notifyAll, synchronized, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/CaseClass-class |
caseArity, caseElement, caseName |
Methods inherited from scala/Iterable-class |
/:, :\, concat, 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, toList, toString, union, zip, zipAll |
Methods inherited from scala/ScalaObject-class |
getScalaType |
Methods inherited from scala/Seq-class |
concat, copyToArray, indexOf, isDefinedAt, lastIndexOf, stringPrefix, subseq |
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.4.0.3 |
|||