Uses of Class
net.fauxpark.tuples.ThreeTuple
-
Packages that use ThreeTuple Package Description net.fauxpark.stringes The core Stringe classes.net.fauxpark.tuples This package defines a set of Tuples, ranging from one to eight elements. -
-
Uses of ThreeTuple in net.fauxpark.stringes
Methods in net.fauxpark.stringes that return types with arguments of type ThreeTuple Modifier and Type Method Description (package private) List<ThreeTuple<Function<StringeReader,Boolean>,T,Lexer.SymbolPriority>>
Lexer. getFunctions()
Returns the list of function rules.(package private) List<ThreeTuple<String,T,Boolean>>
Lexer. getHighSymbols()
Returns the list of high priority symbol rules.(package private) List<ThreeTuple<String,T,Boolean>>
Lexer. getNormalSymbols()
Returns the list of normal priority symbol rules.(package private) List<ThreeTuple<Pattern,Lexer.RuleMatchValueGenerator<T>,Lexer.SymbolPriority>>
Lexer. getRegexes()
Returns the list of regex rules. -
Uses of ThreeTuple in net.fauxpark.tuples
Methods in net.fauxpark.tuples that return ThreeTuple Modifier and Type Method Description static <A,B,C>
ThreeTuple<A,B,C>Tuples. create(A a, B b, C c)
Makes a 3-tuple.
-