Uses of Interface
com.google.mu.function.CheckedIntConsumer
Packages that use CheckedIntConsumer
Package
Description
Parser combinator that's free from infinite loop or accidental left recursion (requires dot-parse artifact)
Some extra functional interfaces
StringFormat, Substring, Optionals and more...
-
Uses of CheckedIntConsumer in com.google.common.labs.parse
Methods in com.google.common.labs.parse with parameters of type CheckedIntConsumerModifier and TypeMethodDescriptionParser.OrEmpty.parse(String input, CheckedIntConsumer<E> onRemainder) Parses the entireinputstring and returns the result (or the default empty value). -
Uses of CheckedIntConsumer in com.google.mu.function
Methods in com.google.mu.function that return CheckedIntConsumerModifier and TypeMethodDescriptiondefault CheckedIntConsumer<E> CheckedIntConsumer.andThen(CheckedIntConsumer<E> that) Returns a newCheckedIntConsumerthat also passes the input tothat.Methods in com.google.mu.function with parameters of type CheckedIntConsumerModifier and TypeMethodDescriptiondefault CheckedIntConsumer<E> CheckedIntConsumer.andThen(CheckedIntConsumer<E> that) Returns a newCheckedIntConsumerthat also passes the input tothat. -
Uses of CheckedIntConsumer in com.google.mu.util
Methods in com.google.mu.util with parameters of type CheckedIntConsumerModifier and TypeMethodDescriptionOptionals.ifPresent(OptionalInt optional, CheckedIntConsumer<E> consumer) Invokesconsumerifoptionalis present.