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

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

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

4 रिपॉजिटरी

Awesome GitHub RepositoriesExplicit Nullable Validators

Validators that return nullable by default, requiring explicit calls to mark values as required or handle nulls.

Distinct from Nullable Type Support: Distinct from Nullable Type Support: focuses on validator API design for explicit null handling, not schema type definitions.

Explore 4 awesome GitHub repositories matching software engineering & architecture · Explicit Nullable Validators. Refine with filters or upvote what's useful.

Awesome Explicit Nullable Validators GitHub Repositories

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

    javalin/javalin

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

    Javalin is a lightweight web framework for Java and Kotlin designed for building REST APIs and web applications. It functions as an embedded Jetty web server, allowing applications to run as standalone processes without the need for an external servlet container. The project provides specialized frameworks for diverse communication patterns, including a REST API framework with automatic OpenAPI schema generation, a GraphQL API framework with query and mutation resolvers, and a WebSocket server for bidirectional real-time communication. It also includes a dedicated framework for pushing real-t

    Provides validators that return nullable types by default and require explicit markers for required values.

    Kotlinhacktoberfestjavajavalin
    GitHub पर देखें↗8,290
  • webmozarts/assertwebmozarts का अवतार

    webmozarts/assert

    7,648GitHub पर देखें↗

    This PHP assertion library is a runtime data validator used to verify method inputs and outputs. It provides a toolkit for validating data types, numeric ranges, and string patterns during program execution to prevent invalid states. The project serves as a static analysis helper by providing type hints and annotations that improve the accuracy of formal verification tools. It includes a collection validation utility for applying rules across arrays or iterable collections, and a filesystem validation tool to verify path existence and read or write permissions. The library covers a broad ran

    Allows validation checks to be executed only when a provided value is not null, supporting optional fields.

    PHP
    GitHub पर देखें↗7,648
  • amitshekhariitbhu/from-java-to-kotlinamitshekhariitbhu का अवतार

    amitshekhariitbhu/from-java-to-kotlin

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

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

    Demonstrates Kotlin's safe-call operator and let block for concise nullable value handling.

    Javaandroidcheet-sheetjava
    GitHub पर देखें↗6,324
  • sindresorhus/owsindresorhus का अवतार

    sindresorhus/ow

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

    ow is a type-safe schema validation library for TypeScript that verifies data integrity at runtime. It functions as a runtime validation framework and type guard utility, ensuring that JavaScript values match expected types and schemas before they are processed. The library synchronizes runtime data checks with static TypeScript type definitions, allowing users to extract type definitions directly from validation predicates. This integration enables type narrowing, where a successful validation result refines the variable type for safer usage in the code. The framework uses a chainable API t

    Allows specifying whether values can be undefined or null without triggering validation errors.

    TypeScriptjavascriptnodejsnpm-package
    GitHub पर देखें↗3,868
  1. Home
  2. Software Engineering & Architecture
  3. Runtime Value Validation
  4. Nullable Type Support
  5. Explicit Nullable Validators

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

  • Optional Field GuardsMechanisms that execute validation logic only when a value is present, allowing for optional inputs. **Distinct from Explicit Nullable Validators:** Focuses on the conditional execution of validators for optional fields, rather than the design of the validator return type.
  • Safe-Call Null OperatorsOperators like ?. and let for chaining nullable operations without explicit null checks. **Distinct from Explicit Nullable Validators:** Distinct from Explicit Nullable Validators: focuses on language-level safe-call operators, not validator API design.