Uses of Interface
fj.Ord.Definition

Packages that use Ord.Definition
Package
Description
Types that set the premise for the existence of Functional Java.
  • Uses of Ord.Definition in fj

    Subinterfaces of Ord.Definition in fj
    Modifier and Type
    Interface
    Description
    static interface 
    Primitives functions of Ord: alternative minimal definition and overridable methods.
    Methods in fj that return Ord.Definition
    Modifier and Type
    Method
    Description
    default Ord.Definition<A>
    Ord.Definition.dual()
     
    static <A,B> Ord.Definition<A>
    Ord.on(F<A,B> f, Ord<B> ord)
    Begin definition of an ord instance.
    default <B> Ord.Definition<A>
    Ord.Definition.then(F<A,B> f, Ord<B> bOrd)
    Refine this ord definition: compares using self and if objects are equal compares using given Ord.
    Methods in fj with parameters of type Ord.Definition
    Modifier and Type
    Method
    Description
    static <A> Ord<A>
    Ord.ordDef(Ord.Definition<A> def)
    Returns an order instance that uses the given minimal equality test and ordering definition.