1 مستودع
Walking through JSON arrays or objects element by element, processing each value or key-value pair with a callback function.
Distinct from JSON Object Iteration: Distinct from JSON Object Iteration: covers both array and object iteration with callback-driven processing.
Explore 1 awesome GitHub repository matching data & databases · Callback-Driven Iterators. Refine with filters or upvote what's useful.
jsonparser is a Go library for parsing, extracting, and modifying JSON data by key path without requiring predefined structs or type schemas. It uses a deterministic state machine to parse JSON directly from byte slices, enabling zero-copy traversal and lazy typed value extraction. The library provides key-path-based navigation to retrieve raw bytes and typed values from nested JSON structures, supporting extraction of strings, integers, floats, and booleans. It also enables in-place value modification and deletion at specified key paths, as well as iteration over arrays and objects using cal
Walks through JSON arrays or objects element by element, processing each value or key-value pair with a callback function.