vector
Type members
Classlikes
Value members
Inherited methods
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
.
- Inherited from
- VectorFunctions
[(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))]
- Inherited from
- VectorFunctions
Combinations of as
and as
, excluding same-element pairs.
Combinations of as
and as
, excluding same-element pairs.
- Inherited from
- VectorFunctions
Run p(a)
s left-to-right until it yields a true value,
answering Maybe.Just(that)
, or Maybe.empty
if nothing matched p
.
Run p(a)
s left-to-right until it yields a true value,
answering Maybe.Just(that)
, or Maybe.empty
if nothing matched p
.
- Inherited from
- VectorFunctions
groupWhenM
specialized to scalaz.Id.Id.
groupWhenM
specialized to scalaz.Id.Id.
- Inherited from
- VectorFunctions
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.
- Inherited from
- VectorFunctions
[
empty Vector, as take 1, as take 2, ..., as]
[
empty Vector, as take 1, as take 2, ..., as]
- Inherited from
- VectorFunctions
Intersperse the element a
between each adjacent pair of elements in as
Intersperse the element a
between each adjacent pair of elements in as
- Inherited from
- VectorFunctions
All of the B
s, in order, and the final C
acquired by a
stateful left fold over as
.
All of the B
s, in order, and the final C
acquired by a
stateful left fold over as
.
- Inherited from
- VectorFunctions
All of the B
s, in order as
-wise, and the final C
acquired
by a stateful right fold over as
.
All of the B
s, in order as
-wise, and the final C
acquired
by a stateful right fold over as
.
- Inherited from
- VectorFunctions
A pair of passing and failing values of as
against p
.
A pair of passing and failing values of as
against p
.
- Inherited from
- VectorFunctions
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.
- Inherited from
- VectorFunctions
[as, as.tail, as.tail.tail, ...,
empty Vector]
[as, as.tail, as.tail.tail, ...,
empty Vector]
- Inherited from
- VectorFunctions
Run p(a)
s and collect as
while p
yields false. Don't run
any p
s after the first true.
Run p(a)
s and collect as
while p
yields false. Don't run
any p
s after the first true.
- Inherited from
- VectorFunctions
Run p(a)
s and collect as
while p
yields true. Don't run
any p
s after the first false.
Run p(a)
s and collect as
while p
yields true. Don't run
any p
s after the first false.
- Inherited from
- VectorFunctions