IArray1

iarray.IArray1$
See theIArray1 companion class
object IArray1

Attributes

Companion:
class
Source:
IArray1.scala
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
IArray1.type

Members list

Concise view

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
Source:
Mirror.scala
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
Source:
Mirror.scala

Value members

Concrete methods

def apply[A](head: A, tail: A*): IArray1[A]

Attributes

Source:
IArray1.scala
def fromNel[A](nel: NonEmptyList[A]): IArray1[A]

Attributes

Source:
IArray1.scala
def fromOneAnd[F[_], A](a: OneAnd[F, A])(implicit F: Foldable[F]): IArray1[A]

Attributes

Source:
IArray1.scala
def iterate[A](start: A, size: Int)(f: A => A): IArray1[A]

Attributes

Source:
IArray1.scala
def singleF[A]: A => IArray1[A]

Attributes

Source:
IArray1.scala
def zip3[A, B, C](a: IArray1[A], b: IArray1[B], c: IArray1[C]): IArray1[(A, B, C)]

Attributes

Source:
IArray1.scala
def zip4[A, B, C, D](a: IArray1[A], b: IArray1[B], c: IArray1[C], d: IArray1[D]): IArray1[(A, B, C, D)]

Attributes

Source:
IArray1.scala
def zip5[A, B, C, D, E](a: IArray1[A], b: IArray1[B], c: IArray1[C], d: IArray1[D], e: IArray1[E]): IArray1[(A, B, C, D, E)]

Attributes

Source:
IArray1.scala
def zipWith3[A, B, C, D](a: IArray1[A], b: IArray1[B], c: IArray1[C])(f: (A, B, C) => D): IArray1[D]

Attributes

Source:
IArray1.scala
def zipWith4[A, B, C, D, E](a: IArray1[A], b: IArray1[B], c: IArray1[C], d: IArray1[D])(f: (A, B, C, D) => E): IArray1[E]

Attributes

Source:
IArray1.scala
def zipWith5[A, B, C, D, E, F](a: IArray1[A], b: IArray1[B], c: IArray1[C], d: IArray1[D], e: IArray1[E])(f: (A, B, C, D, E) => F): IArray1[F]

Attributes

Source:
IArray1.scala

Concrete fields

val zipApply: Apply[IArray1]

Attributes

Source:
IArray1.scala

Implicits

Implicits

implicit def iarray1Equal[A : Equal]: Equal[IArray1[A]]

Attributes

Source:
IArray1.scala
implicit val iarray1Instance: Monad[IArray1] & Plus[IArray1] & Traverse1[IArray1] & Zip[IArray1] & Align[IArray1] & Unzip[IArray1] & Comonad[IArray1]

Attributes

Source:
IArray1.scala
implicit def iarray1Show[A](implicit A: Show[A]): Show[IArray1[A]]

Attributes

Example:
scala> import scalaz._, std.anyVal._
scala> val S = Show[IArray1[Int]]
scala> S.show(IArray1(1, 2, 3))
res0: Cord = IArray1(1, 2, 3)
scala> S.shows(IArray1(1, 2, 3))
res1: String = IArray1(1, 2, 3)
Source:
IArray1.scala