Handbook Glossary
factorcode.org
yaml_parser_tokens


Vocabulary
yaml.ffi

Definition
USING: classes.struct ;

IN: yaml.ffi

STRUCT: yaml_parser_tokens
{ start yaml_token_t* } { end yaml_token_t* }
{ head yaml_token_t* } { tail yaml_token_t* } ;


Methods
USING: classes.struct classes.struct.private kernel yaml.ffi ;

M: yaml_parser_tokens clone
clone-underlying \ yaml_parser_tokens memory>struct ; inline


USING: accessors classes.struct combinators combinators.smart
yaml.ffi ;

M: yaml_parser_tokens struct-slot-values
[ { [ start>> ] [ end>> ] [ head>> ] [ tail>> ] } cleave ]
output>array ; inline