| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | //! JSON parsing and stringification conforming to RFC 8259. https://datatracker.ietf.org/doc/html/rfc8259 |
| 2 | 2 | //! |
| 3 | 3 | //! The low-level `Scanner` API produces `Token`s from an input slice or successive slices of inputs, |
| 4 | | //! The `Reader` API connects a `std.Io.GenericReader` to a `Scanner`. |
| 4 | //! The `Reader` API connects a `std.Io.Reader` to a `Scanner`. |
| 5 | 5 | //! |
| 6 | 6 | //! The high-level `parseFromSlice` and `parseFromTokenSource` deserialize a JSON document into a Zig type. |
| 7 | 7 | //! Parse into a dynamically-typed `Value` to load any JSON value for runtime inspection. |