Object

scalaz.std

vector

Related Doc: package std

Permalink

object vector extends IndexedSeqSubVector with VectorInstances with IndexedSeqSubFunctions

Source
Vector.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. vector
  2. IndexedSeqSubFunctions
  3. VectorInstances
  4. VectorInstances0
  5. IndexedSeqSubVector
  6. IndexedSeqSub
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type IxSq[+A] = Vector[A]

    Permalink
    Definition Classes
    IndexedSeqSubVectorIndexedSeqSub

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 <^>[A, B](as: IxSq[A])(f: (NonEmptyList[A]) ⇒ B)(implicit arg0: Monoid[B]): B

    Permalink

    Returns f applied to the contents of as if non-empty, otherwise, the zero element of the Monoid for the type B.

    Returns f applied to the contents of as if non-empty, otherwise, the zero element of the Monoid for the type B.

    Definition Classes
    IndexedSeqSubFunctions
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def adjacentPairs[A](as: IxSq[A]): IxSq[(A, A)]

    Permalink

    [(as(0), as(1)), (as(1), as(2)), ... (as(size-2), as(size-1))]

    [(as(0), as(1)), (as(1), as(2)), ... (as(size-2), as(size-1))]

    Definition Classes
    IndexedSeqSubFunctions
  6. final def allPairs[A](as: IxSq[A]): IxSq[(A, A)]

    Permalink

    Combinations of as and as, excluding same-element pairs.

    Combinations of as and as, excluding same-element pairs.

    Definition Classes
    IndexedSeqSubFunctions
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. final def breakM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[(IxSq[A], IxSq[A])]

    Permalink

    spanM with p's complement.

    spanM with p's complement.

    Definition Classes
    IndexedSeqSubFunctions
  9. final def buildIxSq[A, B]: CanBuildFrom[IxSq[A], B, IxSq[B]]

    Permalink
    Attributes
    protected
    Definition Classes
    IndexedSeqSubVectorIndexedSeqSub
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def covariant: Traverse[VectorInstances.generic.IxSq] with MonadPlus[VectorInstances.generic.IxSq] with Each[VectorInstances.generic.IxSq] with Index[VectorInstances.generic.IxSq] with Length[VectorInstances.generic.IxSq] with Zip[VectorInstances.generic.IxSq] with Unzip[VectorInstances.generic.IxSq] with IsEmpty[VectorInstances.generic.IxSq] with Align[VectorInstances.generic.IxSq] { def toIndexedSeq[A](fa: scalaz.std.vector.generic.IxSq[A]): scalaz.std.vector.generic.IxSq[A] }

    Permalink
    Attributes
    protected
    Definition Classes
    IndexedSeqSubVectorIndexedSeqSub
  12. final def empty[A]: Vector[Nothing]

    Permalink
    Attributes
    protected
    Definition Classes
    IndexedSeqSubVectorIndexedSeqSub
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def filterM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit F: Applicative[M]): M[IxSq[A]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def findM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[Option[A]]

    Permalink

    Run p(a)s left-to-right until it yields a true value, answering Some(that), or None if nothing matched p.

    Run p(a)s left-to-right until it yields a true value, answering Some(that), or None if nothing matched p.

    Definition Classes
    IndexedSeqSubFunctions
  18. object generic extends IndexedSeqSubVector with IndexedSeqSubInstances

    Permalink
    Definition Classes
    VectorInstances
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def groupWhen[A](as: IxSq[A])(p: (A, A) ⇒ Boolean): IxSq[IxSq[A]]

    Permalink

    groupWhenM specialized to scalaz.Id.Id.

    groupWhenM specialized to scalaz.Id.Id.

    Definition Classes
    IndexedSeqSubFunctions
  21. final def groupWhenM[A, M[_]](as: IxSq[A])(p: (A, A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[IxSq[IxSq[A]]]

    Permalink

    Split at each point where p(as(n), as(n+1)) yields false.

    Split at each point where p(as(n), as(n+1)) yields false.

    Definition Classes
    IndexedSeqSubFunctions
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def initz[A](as: IxSq[A]): IxSq[IxSq[A]]

    Permalink

    [empty IxSq, as take 1, as take 2, ..., as]

    [empty IxSq, as take 1, as take 2, ..., as]

    Definition Classes
    IndexedSeqSubFunctions
  24. final def intersperse[A](as: IxSq[A], a: A): IxSq[A]

    Permalink

    Intersperse the element a between each adjacent pair of elements in as

    Intersperse the element a between each adjacent pair of elements in as

    Definition Classes
    IndexedSeqSubFunctions
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. final def mapAccumLeft[A, B, C](as: IxSq[A])(c: C, f: (C, A) ⇒ (C, B)): (C, IxSq[B])

    Permalink

    All of the Bs, in order, and the final C acquired by a stateful left fold over as.

    All of the Bs, in order, and the final C acquired by a stateful left fold over as.

    Definition Classes
    IndexedSeqSubFunctions
  27. final def mapAccumRight[A, B, C](as: IxSq[A])(c: C, f: (C, A) ⇒ (C, B)): (C, IxSq[B])

    Permalink

    All of the Bs, in order as-wise, and the final C acquired by a stateful right fold over as.

    All of the Bs, in order as-wise, and the final C acquired by a stateful right fold over as.

    Definition Classes
    IndexedSeqSubFunctions
  28. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  31. final def partitionM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit F: Applicative[M]): M[(IxSq[A], IxSq[A])]

    Permalink

    A pair of passing and failing values of as against p.

    A pair of passing and failing values of as against p.

    Definition Classes
    IndexedSeqSubFunctions
  32. final def powerset[A](as: IxSq[A]): IxSq[IxSq[A]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions
  33. final def spanM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[(IxSq[A], IxSq[A])]

    Permalink

    A pair of the longest prefix of passing as against p, and the remainder.

    A pair of the longest prefix of passing as against p, and the remainder.

    Definition Classes
    IndexedSeqSubFunctions
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. final def tailz[A](as: IxSq[A]): IxSq[IxSq[A]]

    Permalink

    [as, as.tail, as.tail.tail, ..., empty IxSq]

    [as, as.tail, as.tail.tail, ..., empty IxSq]

    Definition Classes
    IndexedSeqSubFunctions
  36. final def takeUntilM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[IxSq[A]]

    Permalink

    Run p(a)s and collect as while p yields false.

    Run p(a)s and collect as while p yields false. Don't run any ps after the first true.

    Definition Classes
    IndexedSeqSubFunctions
  37. final def takeWhileM[A, M[_]](as: IxSq[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[IxSq[A]]

    Permalink

    Run p(a)s and collect as while p yields true.

    Run p(a)s and collect as while p yields true. Don't run any ps after the first false.

    Definition Classes
    IndexedSeqSubFunctions
  38. final def toNel[A](as: IxSq[A]): Option[NonEmptyList[A]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions
  39. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  40. final def toZipper[A](as: IxSq[A]): Option[Zipper[A]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions
  41. implicit def vectorEqual[A](implicit A0: Equal[A]): Equal[Vector[A]]

    Permalink
    Definition Classes
    VectorInstances0
  42. implicit val vectorInstance: Traverse[VectorInstances.generic.IxSq] with MonadPlus[VectorInstances.generic.IxSq] with Each[VectorInstances.generic.IxSq] with Index[VectorInstances.generic.IxSq] with Length[VectorInstances.generic.IxSq] with Zip[VectorInstances.generic.IxSq] with Unzip[VectorInstances.generic.IxSq] with IsEmpty[VectorInstances.generic.IxSq] with Align[VectorInstances.generic.IxSq] { def toIndexedSeq[A](fa: scalaz.std.vector.generic.IxSq[A]): scalaz.std.vector.generic.IxSq[A] }

    Permalink
    Definition Classes
    VectorInstances
  43. implicit def vectorMonoid[A]: Monoid[Vector[A]]

    Permalink
    Definition Classes
    VectorInstances
  44. implicit def vectorOrder[A](implicit A0: Order[A]): Order[Vector[A]]

    Permalink
    Definition Classes
    VectorInstances
  45. implicit def vectorShow[A](implicit arg0: Show[A]): Show[Vector[A]]

    Permalink
    Definition Classes
    VectorInstances
  46. object vectorSyntax extends ToVectorOps

    Permalink
  47. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def zipperEnd[A](as: IxSq[A]): Option[Zipper[A]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions

Deprecated Value Members

  1. final def groupByM[A, M[_]](as: IxSq[A])(p: (A, A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[IxSq[IxSq[A]]]

    Permalink
    Definition Classes
    IndexedSeqSubFunctions
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) use groupWhenM

Inherited from IndexedSeqSubFunctions

Inherited from VectorInstances

Inherited from VectorInstances0

Inherited from IndexedSeqSubVector

Inherited from IndexedSeqSub

Inherited from AnyRef

Inherited from Any

Ungrouped