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