Uses of Interface
com.google.mu.function.TriFunction
Packages that use TriFunction
Package
Description
Parser combinator that's free from infinite loop or accidental left recursion (requires dot-parse artifact)
-
Uses of TriFunction in com.google.common.labs.parse
Methods in com.google.common.labs.parse with parameters of type TriFunctionModifier and TypeMethodDescriptionstatic <A,B, C, R> Parser <R> Parser.sequence(Parser<A> a, Production<B> b, Production<C> c, TriFunction<? super A, ? super B, ? super C, ? extends R> combiner) Sequentially matchesa,bandc, and then combines the results using thecombinerfunction.