Expand description
Zero-copy parsing optimizations for YAML processing
This module provides data structures and utilities for minimizing allocations during YAML parsing by using string slices where possible instead of owned strings.
Structs§
- Scanner
Stats - Statistics about scanner performance
- Token
Pool - Memory pool for token allocation to reduce heap allocations
- Zero
Scanner - Zero-copy string scanner that operates on slices
- Zero
String - A zero-copy string that can either borrow from the input or own its data
- Zero
Token - Zero-copy token with position information
Enums§
- Zero
Token Type - Zero-copy token types that use string slices where possible