object LazyList extends IterableFactory[LazyList]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LazyList
- IterableFactory
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply[A](xs: A*): LazyList[A]
- Definition Classes
- IterableFactory
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
implicit
def
canBuildIterable[A]: CanBuild[A, LazyList[A]]
- Definition Classes
- IterableFactory
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
empty[A]: LazyList[A]
- Definition Classes
- LazyList → IterableFactory
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fill[A](n: Int)(elem: ⇒ A): LazyList[A]
- Definition Classes
- IterableFactory
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fromIterable[A](coll: collection.Iterable[A]): LazyList[A]
- Definition Classes
- LazyList → IterableFactory
- def fromIterator[A](it: Iterator[A]): LazyList[A]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
newBuilder[A](): Builder[A, LazyList[A]]
- Definition Classes
- LazyList → IterableFactory
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unfold[A, S](init: S)(f: (S) ⇒ Option[(A, S)]): LazyList[A]
- A
Type of the elements
- S
Type of the internal state
- init
State initial value
- f
Computes the next element (or returns
Noneto signal the end of the collection)- returns
a LazyList by using a function
fproducing elements of typeAand updating an internal stateS.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object #::
- object Empty extends LazyList[Nothing]