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

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

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

1 مستودع

Awesome GitHub RepositoriesEither to Option Conversions

Transforming a success-or-failure result into a simple presence-or-absence value.

Distinct from Option to Either Conversions: Distinct from Option to Either Conversions: moves from a detailed error type to a simple optional type.

Explore 1 awesome GitHub repository matching software engineering & architecture · Either to Option Conversions. Refine with filters or upvote what's useful.

Awesome Either to Option Conversions GitHub Repositories

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

    gcanti/fp-ts

    11,523عرض على 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

    Discards the error side of an Either, returning None for Left and Some for Right.

    TypeScriptalgebraic-data-typesfunctional-programmingtypescript
    عرض على GitHub↗11,523
  1. Home
  2. Software Engineering & Architecture
  3. Optional Value Types
  4. Either to Option Conversions

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

  • Option to Undefined ConversionsExtracting the inner value from an optional container or returning undefined when absent. **Distinct from Either to Option Conversions:** Distinct from Either to Option Conversions: this converts an Option to undefined, not an Either to an Option.