Class

special.collection

CollOverArrayBuilder

Related Doc: package collection

Permalink

class CollOverArrayBuilder extends CollBuilder

Self Type
CollOverArrayBuilder
Linear Supertypes
CollBuilder, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CollOverArrayBuilder
  2. CollBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CollOverArrayBuilder()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def emptyColl[T](implicit cT: RType[T]): Coll[T]

    Permalink

    Create an empty collection with items of the given type.

    Create an empty collection with items of the given type. Even though there are no items, the type of them is specified.

    Definition Classes
    CollOverArrayBuilderCollBuilder
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def fromArray[T](arr: Array[T])(implicit arg0: RType[T]): Coll[T]

    Permalink

    Wrap array into collection.

    Wrap array into collection.

    Definition Classes
    CollOverArrayBuilderCollBuilder
  11. def fromItems[T](items: T*)(implicit cT: RType[T]): Coll[T]

    Permalink

    Construct a new collection from the given list of arguments.

    Construct a new collection from the given list of arguments. The arguments should be of the same type for which there should be an implicit type descriptor at the call site.

    Definition Classes
    CollOverArrayBuilderCollBuilder
    Annotations
    @Reified()
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def pairColl[A, B](as: Coll[A], bs: Coll[B]): PairColl[A, B]

    Permalink

    Constructs a new collection of pairs out of the pair of collections by zipping them.

    Constructs a new collection of pairs out of the pair of collections by zipping them. The resulting collection is semantically equivalent to as.zip(bs).

    as

    collection of first items

    bs

    collection of second items

    returns

    an instance of PairColl interface with represents the resulting collection of pairs.

    Definition Classes
    CollOverArrayBuilderCollBuilder
    Annotations
    @inline()
  19. def pairCollFromArrays[A, B](as: Array[A], bs: Array[B])(implicit arg0: RType[A], arg1: RType[B]): PairColl[A, B]

    Permalink

    Constructs a new collection of pairs out of the pair of arrays by wrapping them in collections and delegating to pairColl method.

    Constructs a new collection of pairs out of the pair of arrays by wrapping them in collections and delegating to pairColl method. The resulting collection is semantically equivalent to as.zip(bs).

    as

    collection of first items

    bs

    collection of second items

    returns

    an instance of PairColl interface with represents the resulting collection of pairs.

    Definition Classes
    CollBuilder
  20. def replicate[T](n: Int, v: T)(implicit arg0: RType[T]): Coll[T]

    Permalink

    Creates a new collection by replicating value v.

    Creates a new collection by replicating value v.

    n

    how many times to replicate value v

    v

    value to replicate

    returns

    collection of the form (v, v, v, ... v) of n elements.

    Definition Classes
    CollOverArrayBuilderCollBuilder
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def unzip[A, B](xs: Coll[(A, B)]): (Coll[A], Coll[B])

    Permalink

    Deconstruct collection of (A,B) pairs into pair of collections.

    Deconstruct collection of (A,B) pairs into pair of collections. If xs is represented as PairColl, then this is O(1) operation (no data is touched).

    Definition Classes
    CollOverArrayBuilderCollBuilder
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def xor(left: Coll[Byte], right: Coll[Byte]): Coll[Byte]

    Permalink

    Element-wise xor of two collections.

    Element-wise xor of two collections.

    Definition Classes
    CollOverArrayBuilderCollBuilder

Inherited from CollBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped