trait View [ +A ]
extends Iterable with IterableLike

Concrete collection type: View

Constructors

Members

override def className : String

The class name of this collection. To be used for converting to string. Collections generally print like this:

 <className>(elem_1, ..., elem_n)

The class name of this collection. To be used for converting to string. Collections generally print like this:

 <className>(elem_1, ..., elem_n)
override def fromIterable ( c: Iterable [ B ] ) : View [ B ]

Avoid copying if source collection is already a view.

Avoid copying if source collection is already a view.

override def view : View [ A ]

A view representing the elements of this collection.

A view representing the elements of this collection.