awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

11 repositorios

Awesome GitHub RepositoriesRecursive Type Processing

Patterns for processing nested data structures using recursive type aliases.

Distinguishing note: Focuses on type-level recursion rather than runtime algorithms.

Explore 11 awesome GitHub repositories matching software engineering & architecture · Recursive Type Processing. Refine with filters or upvote what's useful.

Awesome Recursive Type Processing GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • type-challenges/type-challengesAvatar de type-challenges

    type-challenges/type-challenges

    48,220Ver en GitHub↗

    Type-challenges is a community-driven learning platform and programming playground designed to help developers master advanced TypeScript type systems. It provides a collection of interactive exercises that focus on complex type-level logic, allowing users to practice and refine their skills through hands-on problem solving. The project distinguishes itself by focusing on the boundaries of the language, requiring users to employ recursive conditional types, mapped transformations, and variadic tuple manipulation to solve curated coding puzzles. By working through these challenges, developers

    Processes nested data structures by calling type aliases within themselves until a base case is reached.

    TypeScriptchallengestypetype-system
    Ver en GitHub↗48,220
  • sindresorhus/type-festAvatar de sindresorhus

    sindresorhus/type-fest

    17,233Ver en GitHub↗

    type-fest is a library of reusable utility types for performing complex transformations and validations on objects, arrays, strings, and numeric ranges in TypeScript. It provides a collection of type definitions designed to handle advanced structural changes and constraints. The project distinguishes itself by offering specialized logic for string literal processing, such as casing transformations and pattern-based modifications, and type-level arithmetic for calculating numeric ranges and absolute values. It also includes utilities for enforcing deep immutability, ensuring union mutual exclu

    Ships recursive type processing for deep operations on nested object hierarchies.

    TypeScriptnpm-packagetypestypescript
    Ver en GitHub↗17,233
  • phpdocumentor/typeresolverAvatar de phpDocumentor

    phpDocumentor/TypeResolver

    9,180Ver en GitHub↗

    TypeResolver is a PHP namespace resolver and type parser designed to convert partial class and element names into fully qualified names. It functions as a utility for static code analysis, transforming complex type expressions and primitives into structured value objects. The project implements PSR-5 standards to ensure consistent type referencing. It manages the resolution of structural elements by tracking current namespaces and alias contexts to expand partial identifiers into their full definitions. The tool covers the parsing of compound type strings and the management of PHP imports an

    Parses complex type strings into value objects using recursive type processing patterns.

    PHPtyperesolver
    Ver en GitHub↗9,180
  • rust-lang/rfcsAvatar de rust-lang

    rust-lang/rfcs

    6,406Ver en GitHub↗

    The Rust RFCs repository is the formal home for the Rust language evolution process, housing the structured design documents and community review mechanisms that govern changes to the Rust programming language, its compiler, and its standard library. It defines the complete lifecycle for proposing, discussing, and implementing substantial changes through RFC documents, from initial submission and community feedback through final comment periods and sub-team sign-offs. The repository codifies the governance and collaboration processes that shape Rust's development, including mechanisms for com

    Uses type macros to define recursive type-level operations like appending heterogeneous lists without manual trait boilerplate.

    Markdownrfcrfc-processrust
    Ver en GitHub↗6,406
  • piotrwitek/utility-typesAvatar de piotrwitek

    piotrwitek/utility-types

    5,759Ver en GitHub↗

    Esta es una librería de tipos de utilidad de TypeScript que proporciona alias de tipo avanzados y tipos mapeados para transformaciones complejas de objetos y uniones. Implementa herramientas especializadas para crear tipos nominales marcados, extraer metadatos de tipo y realizar operaciones de conjuntos en tipos de unión. El proyecto destaca por un kit de herramientas para transformaciones de objetos recursivas, permitiendo la aplicación de restricciones de propiedad como estado de solo lectura u opcional a través de estructuras profundamente anidadas. También proporciona un sistema para calcular intersecciones, diferencias y complementos entre tipos de unión para simular la lógica de conjuntos matemática. La librería cubre una amplia gama de capacidades del sistema de tipos, incluyendo filtrado de propiedades de objeto, comparación de formas y la extracción de constructores de clases y tipos de resolución de promesas. Adicionalmente incluye utilidades para la validación de valores, como la detección de valores falsy o nullish y la identificación de tipos primitivos.

    Provides a toolkit for recursively applying property constraints across deeply nested object structures.

    TypeScriptmapped-typesstatic-typingtypescript
    Ver en GitHub↗5,759
  • serde-rs/jsonAvatar de serde-rs

    serde-rs/json

    5,587Ver en GitHub↗

    This is a Rust serialization library for converting data structures to and from JSON strings and byte streams. It is built as a framework within the Serde ecosystem, providing both a strongly typed parser for compile-time safety and a recursive value tree for manipulating JSON data without a predefined schema. The project supports both typed and untyped processing. It can map JSON data into specific Rust types for schema conformity or parse input into a flexible, schemaless representation. It also includes macro-based utilities for the dynamic construction of JSON objects.

    Implements a recursive enum-based sum type to represent schemaless JSON data.

    Rustjsonrustserde
    Ver en GitHub↗5,587
  • gopl-zh/gopl-zh.github.comAvatar de gopl-zh

    gopl-zh/gopl-zh.github.com

    4,958Ver en GitHub↗

    Este proyecto es una traducción al chino de una guía completa sobre el lenguaje de programación Go. Sirve como un recurso educativo localizado y un manual técnico diseñado para proporcionar orientación sobre la sintaxis del lenguaje, su diseño y el desarrollo de software. El recurso cubre una amplia gama de educación sobre el lenguaje Go, incluida la implementación de patrones de programación y diseño de sistemas. Incluye lecciones traducidas y ejemplos que se centran en características principales del lenguaje como la concurrencia y el uso de interfaces. El contenido abarca varias áreas de capacidad, incluidos los fundamentos del lenguaje, modelado de datos, reflexión en tiempo de ejecución y gestión de memoria. También proporciona una cobertura detallada de la arquitectura de software, manejo de errores, control de calidad y redes web. La documentación está estructurada como un manual técnico que incluye contenido traducido, erratas y correcciones para garantizar un aprendizaje preciso.

    Demonstrates how to use reflection to inspect and print complex, nested data structures.

    Goprogramming-language
    Ver en GitHub↗4,958
  • opennmt/ctranslate2Avatar de OpenNMT

    OpenNMT/CTranslate2

    4,319Ver en GitHub↗

    CTranslate2 is a C++ inference engine and runtime for Transformer models, designed to execute models on both CPU and GPU with optimizations for speed and memory efficiency. It functions as a model format converter, quantization tool, and REST API server, enabling deployment of neural machine translation, automatic speech recognition, and text generation models. The engine distinguishes itself through a suite of runtime optimizations including layer fusion, weight-matrix quantization, batch-by-length grouping, and a caching allocator that reuses GPU memory. It supports tensor-parallel model di

    Automatically selects the fastest supported quantization type for the current hardware and backend when loading a model.

    C++avxavx2cpp
    Ver en GitHub↗4,319
  • ts-essentials/ts-essentialsAvatar de ts-essentials

    ts-essentials/ts-essentials

    4,068Ver en GitHub↗

    ts-essentials is a comprehensive toolkit of utility types and libraries for TypeScript, providing advanced primitives for recursive structural transformations, runtime assertions, and type guards. It serves as a utility library for performing complex type-level programming to ensure stronger type safety and reduce boilerplate. The project distinguishes itself through a specialized set of tools for deep object manipulation, such as recursively applying read-only or optional modifiers across nested hierarchies. It also provides a dedicated set of strict type constraints to ensure data structure

    Implements recursive mapped types to apply modifiers like optionality or read-only across nested object hierarchies.

    TypeScriptessentialstoolboxtype-level-programming
    Ver en GitHub↗4,068
  • johnsundell/swifttipsAvatar de JohnSundell

    JohnSundell/SwiftTips

    4,014Ver en GitHub↗

    SwiftTips es una colección curada de guías, bibliotecas y patrones de diseño centrados en el dominio del lenguaje Swift, la arquitectura de aplicaciones y el diseño de APIs. Proporciona un recurso técnico para implementar técnicas de codificación avanzadas y mejores prácticas arquitectónicas. El proyecto enfatiza la creación de interfaces seguras por tipos (type-safe) y conversacionales mediante la composición estratégica de protocolos y genéricos. Ofrece patrones especializados para construir sistemas de interfaz de usuario modulares y gestionar jerarquías de vistas complejas, junto con estrategias integrales para pruebas unitarias e inyección de dependencias. El recurso cubre una amplia gama de capacidades, incluyendo primitivas de programación funcional, utilidades avanzadas del sistema de tipos y estrategias de modelado de datos. También detalla técnicas para el manejo de errores, gestión de memoria y el desarrollo de interfaces de usuario responsivas.

    Uses type aliases to shorten complex generic method signatures for improved readability.

    Ver en GitHub↗4,014
  • gvergnaud/hotscriptAvatar de gvergnaud

    gvergnaud/hotscript

    3,669Ver en GitHub↗

    Hotscript is a comprehensive suite of composable utilities designed for performing structural transformations and mathematical operations within the TypeScript type system. It serves as a type-level manipulation library that provides a set of higher-order functions to map, filter, and reduce the structure of type definitions. The project focuses on type-level programming by implementing reusable logic and calculations directly within types. This includes the ability to create custom type functions, implement type-level pattern matching, and compose sequences of transformations where each oper

    Uses nested conditional types to iteratively process and transform complex, nested type structures until a base case is reached.

    TypeScripttype-level-programmingtypescript
    Ver en GitHub↗3,669
  1. Home
  2. Software Engineering & Architecture
  3. Recursive Type Processing

Explorar subetiquetas

  • Macro-Driven Type Computations1 sub-etiquetaUsing type macros to define recursive type-level operations like appending heterogeneous lists without manual trait boilerplate. **Distinct from Recursive Type Processing:** Distinct from Recursive Type Processing: uses macros for type-level computation rather than runtime recursive type aliases.
  • Recursive Mapped Types2 sub-etiquetasType-level recursion used to apply transformations across all levels of a nested object hierarchy. **Distinct from Recursive Type Processing:** Specifically applies mapped type transformations recursively, whereas Recursive Type Processing is a broader pattern.
  • Reflective State PrintingUsing runtime reflection to recursively traverse and print the internal state of nested data structures. **Distinct from Recursive Type Processing:** Distinct from general recursive type processing as it specifically targets runtime value printing for diagnostics.
  • Sum Type RepresentationsRecursive representations of data using algebraic sum types for flexible, schemaless data structures. **Distinct from Recursive Type Processing:** Distinct from Recursive Type Processing by focusing on the specific data representation of sum types rather than general processing patterns.
  • Type Simplification1 sub-etiquetaUtilities for flattening and simplifying complex, nested type definitions. **Distinct from Recursive Type Processing:** Distinct from Recursive Type Processing: focuses specifically on simplifying/flattening the resulting type for readability.