Skip to content

LLamaGrammarElementType

Namespace: LLama.Native

grammar element type

1
public enum LLamaGrammarElementType

Inheritance ObjectValueTypeEnumLLamaGrammarElementType
Implements IComparable, IFormattable, IConvertible

Fields

Name Value Description
END 0 end of rule definition
ALT 1 start of alternate definition for rule
RULE_REF 2 non-terminal element: reference to rule
CHAR 3 terminal element: character (code point)
CHAR_NOT 4 inverse char(s) ([^a], [^a-b] [^abc])
CHAR_RNG_UPPER 5 modifies a preceding CHAR or CHAR_ALT to be an inclusive range ([a-z])
CHAR_ALT 6 modifies a preceding CHAR or CHAR_RNG_UPPER to add an alternate char to match ([ab], [a-zA])