MCPcopy Create free account
hub / github.com/cschanck/single-file-java / TerminalRule

Interface TerminalRule

src/main/java/org/sfj/PegLegParser.java:104–107  ·  view source on GitHub ↗

Terminal rule, with optional ignoring of case. @param value type

Source from the content-addressed store, hash-verified

102 * @param <V> value type
103 */
104 @FunctionalInterface
105 public interface TerminalRule<V> {
106 RuleReturn<V> rule(boolean ignore);
107 }
108
109 public class ParentRule implements PegLegRule<V> {
110 private final PegLegRule<V> rule;

Callers

nothing calls this directly

Implementers 2

ParentRulesrc/main/java/org/sfj/PegLegParser.jav
CharTerminalsrc/main/java/org/sfj/PegLegParser.jav

Calls

no outgoing calls

Tested by

no test coverage detected