Uses of Enum
fj.Digit

Packages that use Digit
Package
Description
Types that set the premise for the existence of Functional Java.
Parser combinators.
  • Uses of Digit in fj

    Fields in fj with type parameters of type Digit
    Modifier and Type
    Field
    Description
    static final F<Character,Option<Digit>>
    Digit.fromChar
    First-class conversion from a character to a digit.
    static final F<Long,Digit>
    Digit.fromLong
    First-class conversion from a long to a digit.
    static final F<Digit,Character>
    Digit.toChar
    First-class conversion from a digit to a character.
    static final F<Digit,Long>
    Digit.toLong
    First-class conversion from digit to a long.
    Methods in fj that return Digit
    Modifier and Type
    Method
    Description
    static Digit
    Digit.fromLong(long i)
    Converts the right-most digit in the given long value to a digit.
    static Digit
    Digit.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Digit[]
    Digit.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in fj that return types with arguments of type Digit
    Modifier and Type
    Method
    Description
    static Option<Digit>
    Digit.fromChar(char c)
    Converts the given character in the given long value to a digit.
  • Uses of Digit in fj.parser

    Methods in fj.parser that return types with arguments of type Digit
    Modifier and Type
    Method
    Description
    static <E> Parser<Stream<Character>,Digit,E>
    Parser.CharsParser.digit(E missing, F<Character,E> sat)
    Returns a parser that produces a digit (0 to 9).
    static <E> Parser<Stream<Character>,Digit,E>
    Parser.CharsParser.digit(F0<E> missing, F<Character,E> sat)
    Returns a parser that produces a digit (0 to 9).