FiniteElementContainers.InputFileParser.SimpleYAML._parse_value_after_colon — Method
Determine the value given the stripped inline remainder after a mapping colon (or after a sequence dash), plus the current block's indent level.
FiniteElementContainers.InputFileParser.SimpleYAML.line_indent — Method
Count leading ASCII space bytes.
FiniteElementContainers.InputFileParser.SimpleYAML.lstrip_ascii — Method
lstrip ASCII whitespace, returning a plain String. Only advances through single-byte ASCII space/tab characters, so the first non-whitespace byte is always a valid character boundary.
FiniteElementContainers.InputFileParser.SimpleYAML.peek_indent — Method
Find the indent of the next non-blank non-comment line without advancing.
FiniteElementContainers.InputFileParser.SimpleYAML.split_indent — Method
Return (indent::Int, content::String) for a raw line. content is the line with leading spaces removed, as a proper String.
FiniteElementContainers.InputFileParser.SimpleYAML.strip_inline_comment — Method
Strip trailing inline comment (' # ...') and trailing whitespace. Always returns a plain String; uses only byte-level ops.
FiniteElementContainers.InputFileParser.SimpleYAML.suffix_after_char — Method
Return the suffix of s starting one character after byte-position byte_pos. byte_pos must point to the start of a character (i.e. be a valid index). Uses nextind to step one character, then slices to end.