scalaz.std

vector

object vector extends VectorInstances with VectorFunctions

Source
Vector.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. vector
  2. VectorFunctions
  3. VectorInstances
  4. VectorInstances0
  5. AnyRef
  6. Any
  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. final def <^>[A, B](as: Vector[A])(f: (NonEmptyList[A]) ⇒ B)(implicit arg0: Monoid[B]): B

    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
    VectorFunctions
  5. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  7. final def adjacentPairs[A](as: Vector[A]): Vector[(A, A)]

    [(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
    VectorFunctions
  8. final def allPairs[A](as: Vector[A]): Vector[(A, A)]

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

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

    Definition Classes
    VectorFunctions
  9. final def asInstanceOf[T0]: T0

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

    spanM with p's complement.

    spanM with p's complement.

    Definition Classes
    VectorFunctions
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def empty[A]: Vector[A]

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

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

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

    Definition Classes
    VectorFunctions
  16. def finalize(): Unit

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

    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
    VectorFunctions
  18. final def getClass(): Class[_]

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

    groupWhenM specialized to scalaz.Id.Id.

    groupWhenM specialized to scalaz.Id.Id.

    Definition Classes
    VectorFunctions
  20. final def groupWhenM[A, M[_]](as: Vector[A])(p: (A, A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[Vector[Vector[A]]]

    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
    VectorFunctions
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def initz[A](as: Vector[A]): Vector[Vector[A]]

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

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

    Definition Classes
    VectorFunctions
  23. final def intersperse[A](as: Vector[A], a: A): Vector[A]

    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
    VectorFunctions
  24. final def isInstanceOf[T0]: Boolean

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

    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
    VectorFunctions
  26. final def mapAccumRight[A, B, C](as: Vector[A])(c: C, f: (C, A) ⇒ (C, B)): (C, Vector[B])

    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
    VectorFunctions
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

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

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

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

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

    Definition Classes
    VectorFunctions
  31. final def powerset[A](as: Vector[A]): Vector[Vector[A]]

    Definition Classes
    VectorFunctions
  32. final def spanM[A, M[_]](as: Vector[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[(Vector[A], Vector[A])]

    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
    VectorFunctions
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. final def tailz[A](as: Vector[A]): Vector[Vector[A]]

    [as, as.tail, as.tail.tail, ..., empty Vector]

    [as, as.tail, as.tail.tail, ..., empty Vector]

    Definition Classes
    VectorFunctions
  35. final def takeUntilM[A, M[_]](as: Vector[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[Vector[A]]

    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
    VectorFunctions
  36. final def takeWhileM[A, M[_]](as: Vector[A])(p: (A) ⇒ M[Boolean])(implicit arg0: Monad[M]): M[Vector[A]]

    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
    VectorFunctions
  37. final def toNel[A](as: Vector[A]): Option[NonEmptyList[A]]

    Definition Classes
    VectorFunctions
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. final def toZipper[A](as: Vector[A]): Option[Zipper[A]]

    Definition Classes
    VectorFunctions
  40. implicit def vectorEqual[A](implicit A0: Equal[A]): Equal[Vector[A]]

    Definition Classes
    VectorInstances0
  41. implicit val vectorInstance: Traverse[Vector] with MonadPlus[Vector] with BindRec[Vector] with Zip[Vector] with Unzip[Vector] with IsEmpty[Vector] with Align[Vector]

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

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

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

    Definition Classes
    VectorInstances
  45. object vectorSyntax extends ToVectorOps

  46. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def zipperEnd[A](as: Vector[A]): Option[Zipper[A]]

    Definition Classes
    VectorFunctions

Inherited from VectorFunctions

Inherited from VectorInstances

Inherited from VectorInstances0

Inherited from AnyRef

Inherited from Any

Ungrouped