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, T>
Parser<T> Parser.sequence(Parser<A> a, Parser<B> b, Parser<C> c, Parser<D> d, Function4<? super A, ? super B, ? super C, ? super D, ? extends T> combiner) Sequentially matchesa,b,candd, and then combines the results using thecombinerfunction.