Uses of Class
fj.Digit
-
Packages that use Digit Package Description fj Types that set the premise for the existence of Functional Java.fj.parser Parser combinators. -
-
Uses of Digit in fj
Fields in fj with type parameters of type Digit Modifier and Type Field Description static F<java.lang.Character,Option<Digit>>
Digit. fromChar
First-class conversion from a character to a digit.static F<java.lang.Long,Digit>
Digit. fromLong
First-class conversion from a long to a digit.static F<Digit,java.lang.Character>
Digit. toChar
First-class conversion from a digit to a character.static F<Digit,java.lang.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(java.lang.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<java.lang.Character>,Digit,E>
Parser.CharsParser. digit(E missing, F<java.lang.Character,E> sat)
Returns a parser that produces a digit (0 to 9).static <E> Parser<Stream<java.lang.Character>,Digit,E>
Parser.CharsParser. digit(F0<E> missing, F<java.lang.Character,E> sat)
Returns a parser that produces a digit (0 to 9).
-