// yaml_emitter_increase_indent preserves the original signature and delegates to // yaml_emitter_increase_indent_compact without compact-sequence indentation func yaml_emitter_increase_indent(emitter *yaml_emitter_t, flow, indentless bool) bool { … } // CompactSeqIndent makes it so that '- ' is considered part of the indentation. func (e *Encoder) CompactSeqIndent() { … } // DefaultSeqIndent makes it so that '- ' is not considered part of the indentation. func (e *Encoder) DefaultSeqIndent() { … } // yaml_emitter_process_line_comment preserves the original signature and delegates to // yaml_emitter_process_line_comment_linebreak passing false for linebreak func yaml_emitter_process_line_comment(emitter *yaml_emitter_t) bool { … }