enum StrictYAML::Token::Kind

Defined in:

strict-yaml/lexer.cr

Enum Members

EOF = 0
Space = 1
Newline = 2
String = 3
Colon = 4
Pipe = 5
PipeKeep = 6
PipeStrip = 7
Fold = 8
FoldKeep = 9
FoldStrip = 10
List = 11
DocumentStart = 12
DocumentEnd = 13
Comment = 14
Directive = 15

Instance Method Summary

Instance methods inherited from struct Enum

to_yaml(yaml : StrictYAML::Builder) : Nil to_yaml

Constructor methods inherited from struct Enum

new(value : StrictYAML::Any) new

Instance methods inherited from class Object

to_yaml(io : IO) : Nil
to_yaml : String
to_yaml

Class methods inherited from class Object

from_yaml(source : String)
from_yaml(value : StrictYAML::Any)
from_yaml

Instance Method Detail

def colon? #

[View source]
def comment? #

[View source]
def directive? #

[View source]
def document_end? #

[View source]
def document_start? #

[View source]
def eof? #

[View source]
def fold? #

[View source]
def fold_keep? #

[View source]
def fold_strip? #

[View source]
def list? #

[View source]
def newline? #

[View source]
def pipe? #

[View source]
def pipe_keep? #

[View source]
def pipe_strip? #

[View source]
def space? #

[View source]
def string? #

[View source]