awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 रिपॉजिटरी

Awesome GitHub RepositoriesArray Mapping Functions

Functions that transform each element of an array into a new value.

Distinct from Element-wise Array Operations: Existing candidates are focused on specialized tensor operations, tutorials, or finding elements.

Explore 6 awesome GitHub repositories matching programming languages & runtimes · Array Mapping Functions. Refine with filters or upvote what's useful.

Awesome Array Mapping Functions GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • purescript/purescriptpurescript का अवतार

    purescript/purescript

    8,832GitHub पर देखें↗

    PureScript is a statically typed, purely functional programming language that compiles to JavaScript. It is designed as a cross-platform frontend language for building safe web applications, utilizing a static type system and a JavaScript compiler to ensure program correctness across browser and server environments. The language is distinguished by its emphasis on mathematical purity, featuring a robust type system with first-class support for monads. It provides a sophisticated toolset for static verification, including algebraic data types, type classes, and automatic type inference to reje

    Provides a map function to apply transformations to every element of an array to produce a new array.

    Haskellalt-jshaskelljavascript
    GitHub पर देखें↗8,832
  • sebastianbergmann/recursion-contextsebastianbergmann का अवतार

    sebastianbergmann/recursion-context

    6,574GitHub पर देखें↗

    recursion-context is a set of PHP utilities for traversing and modifying deep data hierarchies. It provides a recursive variable processor designed to apply transformations across nested arrays and objects while maintaining stability. The project distinguishes itself through a recursion depth controller and reference tracking to prevent infinite loops and memory exhaustion when processing circular data structures. It monitors the level of nesting during traversal to avoid stack overflows. These tools cover hierarchical data transformation and nested data processing, allowing for stateful vis

    Applies operations to deeply nested PHP arrays or objects while ensuring every single element is visited.

    PHP
    GitHub पर देखें↗6,574
  • ecrmnn/collect.jsecrmnn का अवतार

    ecrmnn/collect.js

    6,571GitHub पर देखें↗

    collect.js is a dependency-free JavaScript library that provides a fluent, chainable interface for manipulating arrays and objects. It mirrors the Laravel Collection API, offering a consistent set of methods for data transformation across JavaScript and Laravel backend environments. The library stores collection data as plain arrays internally and supports fluent method chaining, where each method returns a new collection instance. The library distinguishes itself by closely replicating the Laravel Collection API in JavaScript, mapping each PHP method to an equivalent JavaScript implementatio

    Provides a spread method that passes inner array elements as separate arguments to a callback.

    JavaScriptcollectionlaravellaravel-collections
    GitHub पर देखें↗6,571
  • stdlib-js/stdlibstdlib-js का अवतार

    stdlib-js/stdlib

    5,735GitHub पर देखें↗

    Provides utilities for mapping over two arrays simultaneously.

    JavaScriptjavascriptjslibrary
    GitHub पर देखें↗5,735
  • hujiulong/gcoordhujiulong का अवतार

    hujiulong/gcoord

    3,251GitHub पर देखें↗

    gcoord is a coordinate conversion library that transforms geographic coordinates between China's three major map coordinate systems: WGS-84, GCJ-02, and BD-09. It handles the offset corrections required by national encryption policies, converting GPS or API-derived coordinates to align with the projections used by Chinese map providers like Baidu, Gaode, and Google China. The library provides direct conversions between all three systems, including WGS-84 to GCJ-02, WGS-84 to BD-09, GCJ-02 to BD-09, and their reverse transformations. It processes individual coordinate pairs, batches of coordin

    Maps each coordinate pair through the conversion function, preserving input structure and order.

    TypeScriptbd-09gcj-02geojson
    GitHub पर देखें↗3,251
  • foxhound87/mobx-react-formfoxhound87 का अवतार

    foxhound87/mobx-react-form

    1,095GitHub पर देखें↗

    This project is a reactive state management library designed for handling complex form data and validation logic. It utilizes observable-based patterns to synchronize user interface components with underlying data models, ensuring that form states remain consistent throughout an application. The library provides a structured approach to managing form initialization, field tracking, and lifecycle events. The library distinguishes itself through its support for deeply nested data structures and hierarchical composition, allowing for recursive validation and dynamic updates within complex object

    Updates computed properties for nested field arrays automatically whenever new items are added to the collection.

    TypeScriptformmobxobservables
    GitHub पर देखें↗1,095
  1. Home
  2. Programming Languages & Runtimes
  3. Array Mapping Functions

सब-टैग एक्सप्लोर करें

  • Nested Array Mappers1 सब-टैगFunctions that apply a transformation to each nested element in multi-dimensional arrays. **Distinct from Array Mapping Functions:** Distinct from Array Mapping Functions: operates on nested elements within multi-dimensional arrays, not flat arrays.
  • Nested Data Processors1 सब-टैगUtilities for applying general operations to all elements within deeply nested arrays or objects. **Distinct from Nested Array Mappers:** Distinct from mappers by allowing general visitation and operation application rather than just transforming values into a new array.
  • Two-Array MappersApplies a function to elements from two input arrays and assigns results to an output array. **Distinct from Array Mapping Functions:** Distinct from Array Mapping Functions: operates on two input arrays simultaneously, not a single array.