|
Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg This software is released under an open source BSD licence. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectfj.data.vector.V2<A>
public final class V2<A>
A vector-2.
Method Summary | ||
---|---|---|
static
|
__1()
A first-class function to get the first element of a vector. |
|
static
|
__2()
A first-class function to get the second element of a vector. |
|
A |
_1()
Returns the first element of this vector. |
|
A |
_2()
Returns the second element of this vector. |
|
|
apply(V2<F<A,B>> vf)
Performs function application within a vector (applicative functor pattern). |
|
P1<A> |
head()
Return the first element of this vector as a product-1. |
|
Iterator<A> |
iterator()
Returns an iterator for the elements of this vector. |
|
|
map(F<A,B> f)
Maps the given function across this vector. |
|
static
|
p_()
Returns a function that transforms a vector-2 to the equivalent product-2. |
|
P2<A,A> |
p()
Returns a homogeneous product-2 equivalent to this vector. |
|
static
|
p(P2<A,A> p)
Creates a vector-2 from a homogeneous product-2. |
|
Array<A> |
toArray()
Returns an array with the elements of this vector. |
|
NonEmptyList<A> |
toNonEmptyList()
Returns a nonempty list with the elements of this vector. |
|
static
|
toStream_()
Returns a function that transforms a vector-2 to a stream of its elements. |
|
Stream<A> |
toStream()
Returns a stream of the elements of this vector. |
|
V2<V2<A>> |
vzip(V2<A> bs)
Zips this vector with the given vector to produce a vector of vectors. |
|
|
zip(V2<B> bs)
Zips this vector with the given vector to produce a vector of pairs. |
|
|
zipWith(F<A,F<B,C>> f,
V2<B> bs)
Zips this vector with the given vector using the given function to produce a new vector. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static <A> V2<A> p(P2<A,A> p)
p
- The product-2 from which to create a vector.
public A _1()
public A _2()
public static <A> F<V2<A>,A> __1()
public static <A> F<V2<A>,A> __2()
public Iterator<A> iterator()
iterator
in interface Iterable<A>
public P2<A,A> p()
public NonEmptyList<A> toNonEmptyList()
public Stream<A> toStream()
public static <A> F<V2<A>,Stream<A>> toStream_()
public static <A> F<V2<A>,P2<A,A>> p_()
public Array<A> toArray()
public <B> V2<B> map(F<A,B> f)
f
- The function to map across this vector.
public <B> V2<B> apply(V2<F<A,B>> vf)
vf
- The vector of functions to apply.
public <B,C> V2<C> zipWith(F<A,F<B,C>> f, V2<B> bs)
bs
- The vector to zip this vector with.f
- The function to zip this vector and the given vector with.
public <B> V2<P2<A,B>> zip(V2<B> bs)
bs
- The vector to zip this vector with.
public V2<V2<A>> vzip(V2<A> bs)
bs
- The vector to zip this vector with.
public P1<A> head()
|
Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg This software is released under an open source BSD licence. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |