final object View

This object reifies operations on views as case classes

Constructors

Members

case class Concat

A view that concatenates elements of the underlying collection with the elements of another collection or iterator.

A view that concatenates elements of the underlying collection with the elements of another collection or iterator.

final object Concat

A view that concatenates elements of the underlying collection with the elements of another collection or iterator.

A view that concatenates elements of the underlying collection with the elements of another collection or iterator.

case class Drop

A view that drops leading elements of the underlying collection.

A view that drops leading elements of the underlying collection.

final object Drop

A view that drops leading elements of the underlying collection.

A view that drops leading elements of the underlying collection.

case class Elems

A view with given elements

A view with given elements

final object Elems

A view with given elements

A view with given elements

final object Empty

The empty view

The empty view

case class Filter

A view that filters an underlying collection.

A view that filters an underlying collection.

final object Filter

A view that filters an underlying collection.

A view that filters an underlying collection.

case class FlatMap

A view that flatmaps elements of the underlying collection.

A view that flatmaps elements of the underlying collection.

final object FlatMap

A view that flatmaps elements of the underlying collection.

A view that flatmaps elements of the underlying collection.

case class Map

A view that maps elements of the underlying collection.

A view that maps elements of the underlying collection.

final object Map

A view that maps elements of the underlying collection.

A view that maps elements of the underlying collection.

case class Partition

A view that partitions an underlying collection into two views

A view that partitions an underlying collection into two views

final object Partition

A view that partitions an underlying collection into two views

A view that partitions an underlying collection into two views

case class Partitioned

A view representing one half of a partition.

A view representing one half of a partition.

final object Partitioned

A view representing one half of a partition.

A view representing one half of a partition.

case class Take

A view that takes leading elements of the underlying collection.

A view that takes leading elements of the underlying collection.

final object Take

A view that takes leading elements of the underlying collection.

A view that takes leading elements of the underlying collection.

case class Zip

A view that zips elements of the underlying collection with the elements of another collection or iterator.

A view that zips elements of the underlying collection with the elements of another collection or iterator.

final object Zip

A view that zips elements of the underlying collection with the elements of another collection or iterator.

A view that zips elements of the underlying collection with the elements of another collection or iterator.

def fromIterator ( it: => Iterator [ A ] ) : View [ A ]