Uses of Class
fj.data.vector.V6

Packages that use V6
Package
Description
Types that set the premise for the existence of Functional Java.
Fixed-length vectors
  • Uses of V6 in fj

    Methods in fj that return types with arguments of type V6
    Modifier and Type
    Method
    Description
    static <A> Equal<V6<A>>
    Equal.v6Equal(Equal<A> ea)
    An equal instance for a vector-6.
    static <A> Hash<V6<A>>
    Hash.v6Hash(Hash<A> ea)
    A hash instance for a vector-6.
    static <A> Show<V6<A>>
    Show.v6Show(Show<A> ea)
    A show instance for a vector-6.
  • Uses of V6 in fj.data.vector

    Fields in fj.data.vector declared as V6
    Modifier and Type
    Field
    Description
    private final V6<A>
    V7.tail
     
    Methods in fj.data.vector that return V6
    Modifier and Type
    Method
    Description
    <B> V6<B>
    V6.apply(V6<F<A,B>> vf)
    Performs function application within a vector (applicative functor pattern).
    static <A> V6<A>
    V6.cons(P1<A> head, V5<A> tail)
    Creates a vector-6 from a head and a tail.
    <B> V6<B>
    V6.map(F<A,B> f)
    Maps the given function across this vector.
    static <A> V6<A>
    V6.p(P6<A,A,A,A,A,A> p)
    Creates a vector-6 from a homogeneous product-6.
    V6<A>
    V7.tail()
    Returns all but the first element of this vector, as a vector-6.
    V6<V2<A>>
    V6.vzip(V6<A> bs)
    Zips this vector with the given vector to produce a vector of vectors.
    <B> V6<P2<A,B>>
    V6.zip(V6<B> bs)
    Zips this vector with the given vector to produce a vector of pairs.
    <B, C> V6<C>
    V6.zipWith(F<A,F<B,C>> f, V6<B> bs)
    Zips this vector with the given vector using the given function to produce a new vector.
    Methods in fj.data.vector that return types with arguments of type V6
    Modifier and Type
    Method
    Description
    static <A> F<V6<A>,A>
    V6.__1()
    A first-class function to get the first element of a vector.
    static <A> F<V6<A>,A>
    V6.__2()
    A first-class function to get the second element of a vector.
    static <A> F<V6<A>,A>
    V6.__3()
    A first-class function to get the third element of a vector.
    static <A> F<V6<A>,A>
    V6.__4()
    A first-class function to get the fourth element of a vector.
    static <A> F<V6<A>,A>
    V6.__5()
    A first-class function to get the fifth element of a vector.
    static <A> F<V6<A>,A>
    V6.__6()
    A first-class function to get the sixth element of a vector.
    static <A> F<V6<A>,P6<A,A,A,A,A,A>>
    V6.p_()
    Returns a function that transforms a vector-6 to the equivalent product-6.
    static <A> F<V6<A>,Stream<A>>
    Returns a function that transforms a vector-6 to a stream of its elements.
    Methods in fj.data.vector with parameters of type V6
    Modifier and Type
    Method
    Description
    <B> V6<B>
    V6.apply(V6<F<A,B>> vf)
    Performs function application within a vector (applicative functor pattern).
    static <A> V7<A>
    V7.cons(P1<A> head, V6<A> tail)
    Creates a vector-7 from a head and a tail.
    V6<V2<A>>
    V6.vzip(V6<A> bs)
    Zips this vector with the given vector to produce a vector of vectors.
    <B> V6<P2<A,B>>
    V6.zip(V6<B> bs)
    Zips this vector with the given vector to produce a vector of pairs.
    <B, C> V6<C>
    V6.zipWith(F<A,F<B,C>> f, V6<B> bs)
    Zips this vector with the given vector using the given function to produce a new vector.
    Constructors in fj.data.vector with parameters of type V6
    Modifier
    Constructor
    Description
    private
    V7(P1<A> head, V6<A> tail)