slick.util

ConstArray

final class ConstArray[+T] extends Product

An efficient immutable array implementation which is used in the AST. Semantics are generally the same as for Scala collections but for performance reasons it does not implement any standard collection traits.

Self Type
ConstArray[T]
Source
ConstArray.scala
Linear Supertypes
Product, Equals, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConstArray
  2. Product
  3. Equals
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++(o: Option[T]): ConstArray[T]

  6. def ++[U >: T](u: ConstArray[U]): ConstArray[U]

  7. def +:(v: T): ConstArray[T]

  8. def ->[B](y: B): (ConstArray[T], B)

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to ArrowAssoc[ConstArray[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. def :+(v: T): ConstArray[T]

  10. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  12. def apply(i: Int): T

  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def canEqual(that: Any): Boolean

    Definition Classes
    ConstArray → Equals
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def collect[R](f: PartialFunction[T, R]): ConstArray[R]

  17. def drop(n: Int): ConstArray[T]

  18. def endoMap(f: (T) ⇒ T): ConstArray[T]

    Perform a mapping operation that does not change the type.

    Perform a mapping operation that does not change the type. If all elements remain unchanged (as determined by object identity), return this ConstArray instead of building a new one.

  19. def ensuring(cond: (ConstArray[T]) ⇒ Boolean, msg: ⇒ Any): ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to Ensuring[ConstArray[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (ConstArray[T]) ⇒ Boolean): ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to Ensuring[ConstArray[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to Ensuring[ConstArray[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to Ensuring[ConstArray[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def equals(o: Any): Boolean

    Definition Classes
    ConstArray → Equals → AnyRef → Any
  25. def exists(f: (T) ⇒ Boolean): Boolean

  26. def filter(p: (T) ⇒ Boolean): ConstArray[T]

  27. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def find(f: (T) ⇒ Boolean): Option[T]

  29. def flatMap[R](f: (T) ⇒ ConstArray[R]): ConstArray[R]

  30. def flatten[R](implicit ev: <:<[T, ConstArray[R]]): ConstArray[R]

  31. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B

  32. def foldRight[B](z: B)(op: (T, B) ⇒ B): B

  33. def forall(f: (T) ⇒ Boolean): Boolean

  34. def foreach[R](f: (T) ⇒ R): Unit

  35. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  36. final def getClass(): Class[_]

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

    Definition Classes
    ConstArray → AnyRef → Any
  38. def head: T

  39. def headOption: Option[T]

  40. def indexWhere(f: (T) ⇒ Boolean): Int

  41. def init: ConstArray[T]

  42. def isEmpty: Boolean

  43. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  44. def iterator: Iterator[T]

  45. def last: T

  46. def lastOption: Option[T]

  47. val length: Int

  48. def lengthCompare(n: Int): Int

  49. def map[R](f: (T) ⇒ R): ConstArray[R]

  50. def mkString(start: String, sep: String, end: String): String

  51. def mkString(sep: String): String

  52. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  53. def nonEmpty: Boolean

  54. final def notify(): Unit

    Definition Classes
    AnyRef
  55. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  56. def productArity: Int

    Definition Classes
    ConstArray → Product
  57. def productElement(i: Int): Any

    Definition Classes
    ConstArray → Product
  58. def productIterator: Iterator[Any]

    Definition Classes
    Product
  59. def productPrefix: String

    Definition Classes
    ConstArray → Product
  60. def slice(from: Int, until: Int): ConstArray[T]

  61. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  62. def tail: ConstArray[T]

  63. def take(n: Int): ConstArray[T]

  64. def toArray[R >: T](implicit arg0: ClassTag[R]): Array[R]

  65. def toMap[R, U](implicit ev: <:<[T, (R, U)]): HashMap[R, U]

  66. def toSeq: IndexedSeq[T]

  67. def toSet: HashSet[T]

  68. def toString(): String

    Definition Classes
    ConstArray → AnyRef → Any
  69. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. def withFilter(p: (T) ⇒ Boolean): ConstArrayOp[T]

  73. def zip[U](u: ConstArray[U]): ConstArrayOp[(T, U)]

  74. def zipWithIndex: ConstArrayOp[(T, Int)]

  75. def [B](y: B): (ConstArray[T], B)

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to ArrowAssoc[ConstArray[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constArray: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constArray: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to ArrowAssoc[ConstArray[T]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constArray: ArrowAssoc[ConstArray[T]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: ConstArray[T]

    Implicit information
    This member is added by an implicit conversion from ConstArray[T] to Ensuring[ConstArray[T]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constArray: Ensuring[ConstArray[T]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ConstArray[T] to StringAdd

Inherited by implicit conversion any2stringfmt from ConstArray[T] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from ConstArray[T] to ArrowAssoc[ConstArray[T]]

Inherited by implicit conversion any2Ensuring from ConstArray[T] to Ensuring[ConstArray[T]]

Ungrouped