Create SEQUENCE-START.
(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_sequence_style_t)
| 336 | |
| 337 | // Create SEQUENCE-START. |
| 338 | func yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_sequence_style_t) bool { |
| 339 | *event = yaml_event_t{ |
| 340 | typ: yaml_SEQUENCE_START_EVENT, |
| 341 | anchor: anchor, |
| 342 | tag: tag, |
| 343 | implicit: implicit, |
| 344 | style: yaml_style_t(style), |
| 345 | } |
| 346 | return true |
| 347 | } |
| 348 | |
| 349 | // Create SEQUENCE-END. |
| 350 | func yaml_sequence_end_event_initialize(event *yaml_event_t) bool { |
no test coverage detected