Uses of Class
fj.Bounded
-
Packages that use Bounded Package Description fj Types that set the premise for the existence of Functional Java.fj.data Common algebraic data types. -
-
Uses of Bounded in fj
Methods in fj that return Bounded Modifier and Type Method Description static <A> Bounded<A>
Bounded. bounded(A min, A max)
static <A> Bounded<A>
Bounded. boundedDef(Bounded.Definition<A> def)
Methods in fj with parameters of type Bounded Modifier and Type Method Description static <A> Monoid<Set<A>>
Monoid. setIntersectionMonoid(Bounded<A> bounded, Enumerator<A> enumerator)
A intersection monoid for sets. -
Uses of Bounded in fj.data
Methods in fj.data with parameters of type Bounded Modifier and Type Method Description Stream<A>
Enumerator. toStream(Bounded<A> bounded)
Returns a stream of the values from this enumerator, starting at the min of given Bounded, ending at the max, counting up.
-