awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 repository-uri

Awesome GitHub RepositoriesDeep Class Instance Cloning

Creates independent deep copies of class instances, preserving all nested structures and values.

Distinct from Zero-Copy Cloning: Distinct from Zero-Copy Cloning: focuses on creating full independent copies of class instances in memory, not database-level copy-on-write snapshots.

Explore 7 awesome GitHub repositories matching data & databases · Deep Class Instance Cloning. Refine with filters or upvote what's useful.

Awesome Deep Class Instance Cloning GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • typestack/class-transformerAvatar typestack

    typestack/class-transformer

    7,334Vezi pe GitHub↗

    class-transformer is a TypeScript library that converts plain JavaScript objects into typed class instances and back, using decorators to define transformation rules. It serves as a decorator-based object transformer, JSON deserialization library, and property transformation framework, enabling type-safe serialization and deserialization of class instances. The library distinguishes itself through comprehensive property filtering and mapping capabilities. It supports excluding properties by default, by prefix, by operation (serialization or deserialization), or by explicit marking, as well as

    Provides deep cloning of class instances to create independent copies with preserved nested structures.

    TypeScriptexposing-gettersexposing-propertiestransformation
    Vezi pe GitHub↗7,334
  • mobxjs/mobx-state-treeAvatar mobxjs

    mobxjs/mobx-state-tree

    7,050Vezi pe GitHub↗

    MobX State Tree is a structured, tree-based state management library for JavaScript applications that combines typed model definitions with reactive snapshots and patch-based change tracking. It provides a reactive state container with runtime and compile-time type safety, where application state is defined as a tree of typed models with collocated actions, computed views, and lifecycle hooks for predictable state mutations. The library is built around an action-centric mutation model that encapsulates all state changes within named functions that directly modify the tree, supported by genera

    Creates deep independent copies of state tree nodes as new standalone trees.

    TypeScripthacktoberfestmobxmobx-state-tree
    Vezi pe GitHub↗7,050
  • esotericsoftware/kryoAvatar EsotericSoftware

    EsotericSoftware/kryo

    6,529Vezi pe GitHub↗

    Kryo is a Java binary serialization framework and object cloning library used to convert Java objects into a compact binary format and restore them from bytes. It provides a system for creating deep or shallow copies of complex object graphs without requiring binary conversion. The project utilizes variable-length integer encoding and integer-ID class registration to reduce the size of serialized data. It handles complex object graphs through circular reference tracking to prevent data duplication and infinite loops. To maintain long-term data viability, it includes schema evolution managemen

    Creates full independent copies of complex Java object graphs to avoid modifying original instances.

    HTML
    Vezi pe GitHub↗6,529
  • amitshekhariitbhu/from-java-to-kotlinAvatar amitshekhariitbhu

    amitshekhariitbhu/from-java-to-kotlin

    6,324Vezi pe GitHub↗

    From Java To Kotlin - Your Cheat Sheet For Java To Kotlin

    Demonstrates Kotlin's data class copy() function for cloning with property overrides.

    Javaandroidcheet-sheetjava
    Vezi pe GitHub↗6,324
  • python-attrs/attrsAvatar python-attrs

    python-attrs/attrs

    5,799Vezi pe GitHub↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Creates a modified copy of an existing instance by specifying which attribute values to change.

    Python
    Vezi pe GitHub↗5,799
  • effector/effectorAvatar effector

    effector/effector

    4,837Vezi pe GitHub↗

    Effector is a reactive state management library designed for building complex, event-driven applications. It functions as a data flow engine that models application logic as a directed acyclic graph, ensuring that state updates propagate automatically through interconnected nodes. By utilizing atomic state updates and declarative unit composition, the library maintains data consistency and provides a predictable execution model for managing application state. The project distinguishes itself through its framework-agnostic architecture, which decouples business logic from user interface implem

    Generates local instances of shared asynchronous operations to allow component-specific event subscriptions.

    TypeScriptbusiness-logiceffectorevent-driven
    Vezi pe GitHub↗4,837
  • riok/mapperlyAvatar riok

    riok/mapperly

    4,100Vezi pe GitHub↗

    Mapperly este un generator de surse C# utilizat pentru maparea de înaltă performanță de la obiect la obiect în .NET. Acesta funcționează ca o bibliotecă de mapare la momentul compilării care produce codul de transformare necesar în timpul procesului de build, eliminând nevoia de reflexie la runtime atunci când se convertesc modelele de domeniu în obiecte de transfer de date (DTO). Instrumentul se distinge prin oferirea unei validări diagnostice sigure din punct de vedere al tipurilor și impunerea unei mapări stricte, emițând avertismente pentru proprietățile nemapate la momentul compilării. Include capabilități specializate pentru gestionarea referințelor circulare și clonarea profundă pentru a menține identitatea obiectelor și a preveni buclele infinite în timpul transformărilor complexe. Proiectul acoperă o gamă largă de sarcini de transformare, inclusiv aplatizarea ierarhiilor de obiecte imbricate, conversia diverselor tipuri de colecții și span-uri, precum și maparea cuprinzătoare a enum-urilor între șiruri și tipuri primitive. De asemenea, suportă integrarea cu baza de date prin proiecția interogărilor, traducând definițiile de mapare în arbori de expresii pentru a optimiza preluarea câmpurilor din surse interogabile. Opțiunile de configurare permit fabrici de obiecte personalizate, excluderi la nivel de membru și integrarea logicii de mapare definite de utilizator. Codul sursă generat poate fi exportat într-un director configurabil pentru inspecție manuală și controlul versiunilor.

    Creates full independent copies of nested objects and collections to isolate data.

    C#
    Vezi pe GitHub↗4,100
  1. Home
  2. Data & Databases
  3. Zero-Copy Cloning
  4. Deep Class Instance Cloning

Explorează sub-etichetele

  • Data Class Copy Functions1 sub-tagLanguage-level copy functions on data classes that clone objects while overriding selected properties. **Distinct from Deep Class Instance Cloning:** Distinct from Deep Class Instance Cloning: focuses on Kotlin's built-in copy() method for data classes, not general deep cloning of arbitrary instances.