Class/Object

iarray

IArray1

Related Docs: object IArray1 | package iarray

Permalink

final case class IArray1[A](head: A, tail: IArray[A]) extends Product with Serializable

Non empty immutable array

Self Type
IArray1[A]
Source
IArray1.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IArray1
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IArray1(head: A, tail: IArray[A])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +:(a: A): IArray1[A]

    Permalink
  4. def :+(a: A): IArray1[A]

    Permalink
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def ===(that: IArray1[A])(implicit E: Equal[A]): Boolean

    Permalink
  7. def align[B](that: IArray1[B]): IArray1[\&/[A, B]]

    Permalink
  8. def alignWith[B, C](that: IArray1[B])(f: (\&/[A, B]) ⇒ C): IArray1[C]

    Permalink
  9. def apply(i: Int): A

    Permalink
    Annotations
    @inline()
  10. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def cobind[B](f: (IArray1[A]) ⇒ B): IArray1[B]

    Permalink
  13. def cojoin: IArray1[IArray1[A]]

    Permalink
  14. def collect[B](f: PartialFunction[A, B]): IArray[B]

    Permalink
  15. def collectFirst[B](f: PartialFunction[A, B]): Option[B]

    Permalink
  16. def collectLast[B](f: PartialFunction[A, B]): Option[B]

    Permalink
  17. def contains(a: A)(implicit E: Equal[A]): Boolean

    Permalink
  18. def count(f: (A) ⇒ Boolean): Int

    Permalink
  19. def dropL(n: Int): IArray[A]

    Permalink
  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    IArray1 → Equals → AnyRef → Any
  22. def exists(f: (A) ⇒ Boolean): Boolean

    Permalink
  23. def finalize(): Unit

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

    Permalink
  25. def findRight(f: (A) ⇒ Boolean): Option[A]

    Permalink
  26. def flatMap[B](f: (A) ⇒ IArray1[B]): IArray1[B]

    Permalink
  27. def flatten[B](implicit A: <:<[A, IArray1[B]]): IArray1[B]

    Permalink
  28. def foldMap1[B](f: (A) ⇒ B)(implicit B: Semigroup[B]): B

    Permalink
  29. def foldMapLeft1[B](z: (A) ⇒ B)(f: (B, A) ⇒ B): B

    Permalink
  30. def foldMapRight1[B](z: (A) ⇒ B)(f: (A, B) ⇒ B): B

    Permalink
  31. def foldl[B](z: B)(f: (B, A) ⇒ B): B

    Permalink
  32. def foldl1(f: (A, A) ⇒ A): A

    Permalink
  33. def foldr[B](z: B)(f: (A, B) ⇒ B): B

    Permalink
  34. def foldr1(f: (A, A) ⇒ A): A

    Permalink
  35. def forall(f: (A) ⇒ Boolean): Boolean

    Permalink
  36. def foreach[U](f: (A) ⇒ U): Unit

    Permalink
  37. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    IArray1 → AnyRef → Any
  39. val head: A

    Permalink
  40. def indexOfL(a: A)(implicit E: Equal[A]): Option[Int]

    Permalink
  41. def indexOfR(a: A)(implicit E: Equal[A]): Option[Int]

    Permalink
  42. def init: IArray[A]

    Permalink
  43. def intercalate1(a: A)(implicit A: Semigroup[A]): A

    Permalink
  44. def intersperse(a: A): IArray1[A]

    Permalink
  45. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  46. def last: A

    Permalink
  47. def length: Int

    Permalink
    Annotations
    @inline()
  48. def map[B](f: (A) ⇒ B): IArray1[B]

    Permalink
  49. def max(implicit O: Order[A]): A

    Permalink
  50. def maxBy[B](f: (A) ⇒ B)(implicit O: Order[B]): A

    Permalink
  51. def maxOf[B](f: (A) ⇒ B)(implicit O: Order[B]): B

    Permalink
  52. def min(implicit O: Order[A]): A

    Permalink
  53. def minBy[B](f: (A) ⇒ B)(implicit O: Order[B]): A

    Permalink
  54. def minOf[B](f: (A) ⇒ B)(implicit O: Order[B]): B

    Permalink
  55. def mkString(start: String, sep: String, end: String): String

    Permalink
  56. def mkString(sep: String): String

    Permalink
  57. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  60. def oneAnd: OneAnd[IArray, A]

    Permalink
  61. def partition(f: (A) ⇒ Boolean): (IArray[A], IArray[A])

    Permalink
  62. def plus(that: IArray1[A]): IArray1[A]

    Permalink
  63. def reverse: IArray1[A]

    Permalink
  64. def reverseMap[B](f: (A) ⇒ B): IArray1[B]

    Permalink
  65. def scanLeft[B](z: B)(f: (B, A) ⇒ B): IArray1[B]

    Permalink
  66. def scanRight[B](z: B)(f: (A, B) ⇒ B): IArray1[B]

    Permalink
  67. def size: Int

    Permalink
    Annotations
    @inline()
  68. def sortBy[B](f: (A) ⇒ B)(implicit O: Order[B]): IArray1[A]

    Permalink
  69. def sortWith(f: (A, A) ⇒ Boolean): IArray1[A]

    Permalink
  70. def sorted(implicit O: Order[A]): IArray1[A]

    Permalink
  71. def sum(implicit A: Numeric[A]): A

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

    Permalink
    Definition Classes
    AnyRef
  73. val tail: IArray[A]

    Permalink
  74. def toArray(implicit A: ClassTag[A]): Array[A]

    Permalink
  75. def toIArray: IArray[A]

    Permalink
  76. def toIList: IList[A]

    Permalink
  77. def toIterator: Iterator[A]

    Permalink
  78. def toList: List[A]

    Permalink
  79. def toNel: NonEmptyList[A]

    Permalink
  80. def toString(): String

    Permalink
    Definition Classes
    IArray1 → AnyRef → Any
  81. def traverse1[F[_], B](f: (A) ⇒ F[B])(implicit F: Apply[F]): F[IArray1[B]]

    Permalink
  82. def unite[G[_], B](implicit A: <:<[A, G[B]], G: Foldable[G]): IArray[B]

    Permalink
  83. def unite1[G[_], B](implicit A: <:<[A, G[B]], G: Foldable1[G]): IArray1[B]

    Permalink
  84. def unzip[B, C](implicit e: <:<[A, Product2[B, C]]): (IArray1[B], IArray1[C])

    Permalink
  85. def unzip3[B, C, D](implicit e: <:<[A, Product3[B, C, D]]): (IArray1[B], IArray1[C], IArray1[D])

    Permalink
  86. def unzip4[B, C, D, E](implicit e: <:<[A, Product4[B, C, D, E]]): (IArray1[B], IArray1[C], IArray1[D], IArray1[E])

    Permalink
  87. def unzip5[B, C, D, E, F](implicit e: <:<[A, Product5[B, C, D, E, F]]): (IArray1[B], IArray1[C], IArray1[D], IArray1[E], IArray1[F])

    Permalink
  88. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. def widen[B](implicit ev: <:<[A, B]): IArray1[B]

    Permalink
  92. def zip[B](that: IArray1[B]): IArray1[(A, B)]

    Permalink
  93. def zipAll[B](that: IArray1[B], a: A, b: B): IArray1[(A, B)]

    Permalink
  94. def zipWith[B, C](that: IArray1[B])(f: (A, B) ⇒ C): IArray1[C]

    Permalink
  95. def zipWithIndex: IArray1[(A, Int)]

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped