| split_by_tag/2 | Split XML by specific tag using regex. |
| split_fixed/2 | Split XML into fixed-size chunks with boundary reconstruction. |
| validate_chunk/1 | Validate that a chunk is well-formed XML. |
split_by_tag(Binary::binary(), Tag::binary()) -> {ok, [binary()]} | {error, term()}
Split XML by specific tag using regex
split_fixed(Binary::binary(), ChunkSize::pos_integer()) -> {ok, [binary()]}
Split XML into fixed-size chunks with boundary reconstruction
validate_chunk(Chunk::binary()) -> boolean()
Validate that a chunk is well-formed XML
Generated by EDoc