awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesJSON Array Iteration

Mechanisms for looping through elements of a JSON array within a document.

Distinct from Array Element Accessors: Distinct from Array Element Accessors: focuses on sequential iteration over the entire collection rather than indexed access.

Explore 4 awesome GitHub repositories matching data & databases · JSON Array Iteration. Refine with filters or upvote what's useful.

Awesome JSON Array Iteration GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • bblanchon/arduinojsonالصورة الرمزية لـ bblanchon

    bblanchon/ArduinoJson

    7,176عرض على GitHub↗

    ArduinoJson is a C++ library for parsing and manipulating JSON data and MessagePack binary streams on microcontrollers with limited memory and processing power. It provides the core primitives necessary for embedded data serialization and parsing, enabling devices to exchange structured data over serial or network interfaces. The library is distinguished by its focus on microcontroller memory management, employing strategies such as pool-based allocation, string deduplication, and non-owning string views to minimize RAM usage. It further optimizes for constrained environments by allowing cons

    Allows looping through JSON array elements by holding a reference to the array within the document.

    C++arduinoarduino-libraryc-plus-plus
    عرض على GitHub↗7,176
  • rockstarlang/rockstarالصورة الرمزية لـ RockstarLang

    RockstarLang/rockstar

    6,882عرض على GitHub↗

    Rockstar is an esoteric programming language whose syntax is inspired by 1980s hard rock and heavy metal lyrics, making programs read like song lyrics. It uses poetic number literals, where the length of each word in a phrase is parsed as a decimal digit to initialize numeric variables, and pronoun-based variable references, where words like "it" and "they" resolve to the most recently assigned or compared variable at runtime. The language can be compiled to WebAssembly and run inside a web page for in-browser code execution. The language distinguishes itself through a lyric-driven parsing sy

    Iterates over array elements using lyrical 'for each' or 'for every' loop constructs.

    JavaScript
    عرض على GitHub↗6,882
  • materializeinc/materializeالصورة الرمزية لـ MaterializeInc

    MaterializeInc/materialize

    6,314عرض على GitHub↗

    Materialize is a streaming SQL database that continuously ingests live data from sources such as Kafka, Redpanda, PostgreSQL, and MySQL, and incrementally maintains materialized views. It provides a PostgreSQL-compatible query engine that accepts standard SQL over the PostgreSQL wire protocol, enabling any existing SQL client or BI tool to query real-time data. The system also includes a Model Context Protocol (MCP) server that exposes live materialized view data to AI agents, providing fresh context without polling. Materialize distinguishes itself through its ability to offer configurable c

    Splits a JSON array payload into individual rows, one per array element.

    Rust
    عرض على GitHub↗6,314
  • buger/jsonparserالصورة الرمزية لـ buger

    buger/jsonparser

    5,629عرض على GitHub↗

    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 each element of a JSON array sequentially, invoking a callback with the element's raw value and detected type.

    Gogojsonjson-parser
    عرض على GitHub↗5,629
  1. Home
  2. Data & Databases
  3. Immutable Array Updates
  4. Array Element Modifiers
  5. Array Element Accessors
  6. JSON Array Iteration

استكشف الوسوم الفرعية

  • Lyrical Array IterationsIterates over each element in an array using 'for each' or 'for every' loop constructs. **Distinct from JSON Array Iteration:** Distinct from JSON Array Iteration: uses lyrical keywords 'for each' or 'for every' for iteration, not JSON-specific mechanisms.