Uses of Interface
fj.F3
-
Packages that use F3 Package Description fj Types that set the premise for the existence of Functional Java.fj.data Common algebraic data types.fj.data.hlist Type-safe, extensible, heterogeneous listsfj.data.optic Optic data types adapted from the Scala Monocle library and inspired by the Haskell Lens library.fj.data.vector Fixed-length vectors -
-
Uses of F3 in fj
Methods in fj that return F3 Modifier and Type Method Description static <A,B,C>
F3<A,B,C,Unit>Effect. f(Effect3<A,B,C> e)
static <A,B,C,D,E extends java.lang.Exception>
F3<A,B,C,Validation<E,D>>Try. f(Try3<A,B,C,D,E> t)
Promotes the Try3 to a Validation that returns an Exception on the failure side and its result on the success side.static <A,B,C,Z extends java.lang.Exception>
F3<A,B,C,Validation<Z,Unit>>TryEffect. f(TryEffect3<A,B,C,Z> t)
static <A,B,C,D>
F3<A,B,C,D>Function. uncurryF3(F<A,F<B,F<C,D>>> f)
Uncurry a function of arity-3.Methods in fj that return types with arguments of type F3 Modifier and Type Method Description static <A,B,C,D>
F<F<A,F<B,F<C,D>>>,F3<A,B,C,D>>Function. uncurryF3()
Uncurry a function of arity-3.Methods in fj with parameters of type F3 Modifier and Type Method Description static <A,B,C,D>
F<A,F<B,F<C,D>>>Function. curry(F3<A,B,C,D> f)
Curry a function of arity-3.static <A,B,C,D>
F<B,F<C,D>>Function. curry(F3<A,B,C,D> f, A a)
Curry a function of arity-3.static <A,B,C,D>
F<C,D>Function. curry(F3<A,B,C,D> f, A a, B b)
Curry a function of arity-3. -
Uses of F3 in fj.data
Methods in fj.data that return F3 Modifier and Type Method Description static <A> F3<Stream<A>,A,Stream<A>,Zipper<A>>
Zipper. zipper()
First-class constructor of zippers.Methods in fj.data with parameters of type F3 Modifier and Type Method Description <B,C,D>
Validation<List<E>,D>Validation. accumulate(Validation<E,B> v2, Validation<E,C> v3, F3<T,B,C,D> f)
<A,B,C>
Validation<E,C>Validation. accumulate(Semigroup<E> s, Validation<E,A> va, Validation<E,B> vb, F3<T,A,B,C> f)
Accumulates errors on the failing side of this or any given validation if one or more are encountered, or applies the given function if all succeeded and returns that value on the successful side. -
Uses of F3 in fj.data.hlist
Fields in fj.data.hlist declared as F3 Modifier and Type Field Description private F3<G,V,L,R>
HList.HFoldr. foldRight
Constructors in fj.data.hlist with parameters of type F3 Constructor Description HFoldr(F3<G,V,L,R> foldRight)
-
Uses of F3 in fj.data.optic
Methods in fj.data.optic with parameters of type F3 Modifier and Type Method Description static <S,T,A,B>
PTraversal<S,T,A,B>PTraversal. pTraversal(F<S,A> get1, F<S,A> get2, F3<B,B,S,T> set)
static <S,A>
Traversal<S,A>Traversal. traversal(F<S,A> get1, F<S,A> get2, F3<A,A,S,S> set)
-
Uses of F3 in fj.data.vector
Methods in fj.data.vector that return F3 Modifier and Type Method Description static <A> F3<A,A,A,V3<A>>
V. v3()
Returns a function that puts elements in a vector-3.
-