final case class Longs(values: Array[Long], offset: Int, length: Int) extends Chunk[Long] with KnownElementType[Long] with Product with Serializable

Source
Chunk.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Longs
  2. Product
  3. Equals
  4. KnownElementType
  5. Chunk
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Longs(values: Array[Long], offset: Int, length: Int)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Longs toany2stringadd[Longs] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Longs, B)
    Implicit
    This member is added by an implicit conversion from Longs toArrowAssoc[Longs] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def apply(i: Int): Long

    Returns the element at the specified index.

    Returns the element at the specified index. Throws if index is < 0 or >= size.

    Definition Classes
    LongsChunk
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def at(i: Int): Long
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  10. def collect[O2](pf: PartialFunction[Long, O2]): Chunk[O2]

    More efficient version of filter(pf.isDefinedAt).map(pf).

    More efficient version of filter(pf.isDefinedAt).map(pf).

    Definition Classes
    Chunk
  11. def copyToArray[O2 >: Long](xs: Array[O2], start: Int): Unit

    Copies the elements of this chunk in to the specified array at the specified start index.

    Copies the elements of this chunk in to the specified array at the specified start index.

    Definition Classes
    LongsChunk
  12. def drop(n: Int): Chunk[Long]

    Drops the first n elements of this chunk.

    Drops the first n elements of this chunk.

    Definition Classes
    LongsChunk
  13. def elementClassTag: ClassTag[Long]
    Definition Classes
    LongsKnownElementType
  14. def ensuring(cond: (Longs) ⇒ Boolean, msg: ⇒ Any): Longs
    Implicit
    This member is added by an implicit conversion from Longs toEnsuring[Longs] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (Longs) ⇒ Boolean): Longs
    Implicit
    This member is added by an implicit conversion from Longs toEnsuring[Longs] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): Longs
    Implicit
    This member is added by an implicit conversion from Longs toEnsuring[Longs] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): Longs
    Implicit
    This member is added by an implicit conversion from Longs toEnsuring[Longs] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(a: Any): Boolean
    Definition Classes
    Chunk → AnyRef → Any
  20. def filter(p: (Long) ⇒ Boolean): Chunk[Long]

    Returns a chunk that has only the elements that satisfy the supplied predicate.

    Returns a chunk that has only the elements that satisfy the supplied predicate.

    Definition Classes
    Chunk
  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  22. def find(p: (Long) ⇒ Boolean): Option[Long]

    Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

    Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

    Definition Classes
    Chunk
  23. def flatMap[O2](f: (Long) ⇒ Chunk[O2]): Chunk[O2]

    Maps f over the elements of this chunk and concatenates the result.

    Maps f over the elements of this chunk and concatenates the result.

    Definition Classes
    Chunk
  24. def foldLeft[A](init: A)(f: (A, Long) ⇒ A): A

    Left-folds the elements of this chunk.

    Left-folds the elements of this chunk.

    Definition Classes
    Chunk
  25. def forall(p: (Long) ⇒ Boolean): Boolean

    Returns true if the predicate passes for all elements.

    Returns true if the predicate passes for all elements.

    Definition Classes
    Chunk
  26. def foreach(f: (Long) ⇒ Unit): Unit

    Invokes the supplied function for each element of this chunk.

    Invokes the supplied function for each element of this chunk.

    Definition Classes
    Chunk
  27. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Longs toStringFormat[Longs] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def hashCode(): Int
    Definition Classes
    Chunk → AnyRef → Any
  30. def head: Option[Long]

    Gets the first element of this chunk.

    Gets the first element of this chunk.

    Definition Classes
    Chunk
  31. def indexWhere(p: (Long) ⇒ Boolean): Option[Int]

    Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

    Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

    Definition Classes
    Chunk
  32. final def isEmpty: Boolean

    True if size is zero, false otherwise.

    True if size is zero, false otherwise.

    Definition Classes
    Chunk
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def iterator: Iterator[Long]

    Creates an iterator that iterates the elements of this chunk.

    Creates an iterator that iterates the elements of this chunk. The returned iterator is not thread safe.

    Definition Classes
    Chunk
  35. def knownElementType[B](implicit classTag: ClassTag[B]): Boolean

    Returns true if this chunk is known to have elements of type B.

    Returns true if this chunk is known to have elements of type B. This is determined by checking if the chunk type mixes in Chunk.KnownElementType.

    Definition Classes
    Chunk
  36. def last: Option[Long]

    Gets the last element of this chunk.

    Gets the last element of this chunk.

    Definition Classes
    Chunk
  37. val length: Int
  38. def map[O2](f: (Long) ⇒ O2): Chunk[O2]

    Creates a new chunk by applying f to each element in this chunk.

    Creates a new chunk by applying f to each element in this chunk.

    Definition Classes
    Chunk
  39. def mapAccumulate[S, O2](init: S)(f: (S, Long) ⇒ (S, O2)): (S, Chunk[O2])

    Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs.

    Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs. The first invocation of f uses init as the input state value. Each successive invocation uses the output state of the previous invocation.

    Definition Classes
    Chunk
  40. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. final def nonEmpty: Boolean

    False if size is zero, true otherwise.

    False if size is zero, true otherwise.

    Definition Classes
    Chunk
  42. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  44. val offset: Int
  45. def productElementNames: Iterator[String]
    Definition Classes
    Product
  46. def reverseIterator: Iterator[Long]

    Creates an iterator that iterates the elements of this chunk in reverse order.

    Creates an iterator that iterates the elements of this chunk in reverse order. The returned iterator is not thread safe.

    Definition Classes
    Chunk
  47. def scanLeft[O2](z: O2)(f: (O2, Long) ⇒ O2): Chunk[O2]

    Like foldLeft but emits each intermediate result of f.

    Like foldLeft but emits each intermediate result of f.

    Definition Classes
    Chunk
  48. def scanLeftCarry[O2](z: O2)(f: (O2, Long) ⇒ O2): (Chunk[O2], O2)

    Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

    Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

    Equivalent to val b = a.scanLeft(z)(f); val (c, carry) = b.splitAt(b.size - 1).

    Definition Classes
    Chunk
  49. def scanLeft_[O2](z: O2, emitFinal: Boolean)(f: (O2, Long) ⇒ O2): (Chunk[O2], O2)
    Attributes
    protected
    Definition Classes
    Chunk
  50. def size: Int

    Returns the number of elements in this chunk.

    Returns the number of elements in this chunk.

    Definition Classes
    LongsChunk
  51. def splitAt(n: Int): (Chunk[Long], Chunk[Long])

    Splits this chunk in to two chunks at the specified index.

    Splits this chunk in to two chunks at the specified index.

    Definition Classes
    Chunk
  52. def splitAtChunk_(n: Int): (Chunk[Long], Chunk[Long])

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Attributes
    protected
    Definition Classes
    LongsChunk
  53. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  54. def take(n: Int): Chunk[Long]

    Takes the first n elements of this chunk.

    Takes the first n elements of this chunk.

    Definition Classes
    LongsChunk
  55. def toArray[O2 >: Long](implicit arg0: ClassTag[O2]): Array[O2]

    Copies the elements of this chunk to an array.

    Copies the elements of this chunk to an array.

    Definition Classes
    LongsChunk
  56. def toBooleans[B >: Long](implicit ev: =:=[B, Boolean]): Booleans

    Converts this chunk to a Chunk.Booleans, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Booleans, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of booleans, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  57. def toByteBuffer[B >: Long](implicit ev: =:=[B, Byte]): java.nio.ByteBuffer

    Converts this chunk to a java.nio.ByteBuffer.

    Converts this chunk to a java.nio.ByteBuffer.

    Definition Classes
    Chunk
  58. def toBytes[B >: Long](implicit ev: =:=[B, Byte]): Bytes

    Converts this chunk to a Chunk.Bytes, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Bytes, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  59. def toChain: Chain[Long]

    Converts this chunk to a chain.

    Converts this chunk to a chain.

    Definition Classes
    Chunk
  60. def toDoubles[B >: Long](implicit ev: =:=[B, Double]): Doubles

    Converts this chunk to a Chunk.Doubles, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Doubles, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  61. def toFloats[B >: Long](implicit ev: =:=[B, Float]): Floats

    Converts this chunk to a Chunk.Floats, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Floats, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  62. def toInts[B >: Long](implicit ev: =:=[B, Int]): Ints

    Converts this chunk to a Chunk.Ints, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Ints, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  63. def toList: List[Long]

    Converts this chunk to a list.

    Converts this chunk to a list.

    Definition Classes
    Chunk
  64. def toLongs[B >: Long](implicit ev: =:=[B, Long]): Longs

    Converts this chunk to a Chunk.Longs, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Longs, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of longs, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  65. def toShorts[B >: Long](implicit ev: =:=[B, Short]): Shorts

    Converts this chunk to a Chunk.Shorts, allowing access to the underlying array of elements.

    Converts this chunk to a Chunk.Shorts, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

    Definition Classes
    Chunk
  66. def toString(): String
    Definition Classes
    Chunk → AnyRef → Any
  67. def toVector: Vector[Long]

    Converts this chunk to a vector.

    Converts this chunk to a vector.

    Definition Classes
    Chunk
  68. val values: Array[Long]
  69. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  70. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  71. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  72. def zip[O2](that: Chunk[O2]): Chunk[(Long, O2)]

    Zips this chunk the the supplied chunk, returning a chunk of tuples.

    Zips this chunk the the supplied chunk, returning a chunk of tuples.

    Definition Classes
    Chunk
  73. def zipWith[O2, O3](that: Chunk[O2])(f: (Long, O2) ⇒ O3): Chunk[O3]

    Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

    Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

    Definition Classes
    Chunk
  74. def [B](y: B): (Longs, B)
    Implicit
    This member is added by an implicit conversion from Longs toArrowAssoc[Longs] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Product

Inherited from Equals

Inherited from KnownElementType[Long]

Inherited from Chunk[Long]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromLongs to any2stringadd[Longs]

Inherited by implicit conversion StringFormat fromLongs to StringFormat[Longs]

Inherited by implicit conversion Ensuring fromLongs to Ensuring[Longs]

Inherited by implicit conversion ArrowAssoc fromLongs to ArrowAssoc[Longs]

Ungrouped