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
·

1 repositorio

Awesome GitHub RepositoriesEffect Aggregators

Primitives for sequencing and merging multiple wrapped values while propagating effects like failure or asynchrony.

Distinct from Concurrent Effect Combinators: Focuses on the general propagation of effects in containers rather than just parallel execution of asynchronous tasks.

Explore 1 awesome GitHub repository matching software engineering & architecture · Effect Aggregators. Refine with filters or upvote what's useful.

Awesome Effect Aggregators GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • gcanti/fp-tsAvatar de gcanti

    gcanti/fp-ts

    11,523Ver en GitHub↗

    fp-ts is a TypeScript library that brings pure functional programming patterns to the language through algebraic data types, type class abstractions, and composable combinators. It provides foundational data types like Option for optional values, Either for typed error handling, and Task for lazy asynchronous computations, all designed to make invalid states unrepresentable and side effects explicit. The library is built on category theory concepts, offering type classes such as Functor, Applicative, Monad, Semigroup, and Monoid with lawful instances for common data structures. The library di

    Combines multiple named effectful computations into a single effect producing a record of results.

    TypeScriptalgebraic-data-typesfunctional-programmingtypescript
    Ver en GitHub↗11,523
  1. Home
  2. Software Engineering & Architecture
  3. Concurrent Effect Combinators
  4. Effect Aggregators

Explorar subetiquetas

  • RecordPrimitives that combine multiple named effects into a single effect returning a record of results. **Distinct from Effect Aggregators:** Specifically targets the construction of records from multiple effects, whereas Effect Aggregators is a general primitive for merging wrapped values.