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

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesNull-Coalescing Operators

Language-level operators that provide fallback values for expressions evaluating to null.

Distinct from Fallback Value Logic: Focuses on language operators specifically, whereas the parent covers general fallback logic.

Explore 6 awesome GitHub repositories matching software engineering & architecture · Null-Coalescing Operators. Refine with filters or upvote what's useful.

Awesome Null-Coalescing Operators GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • dotnet/csharplangAvatar de dotnet

    dotnet/csharplang

    12,636Voir sur GitHub↗

    This repository serves as the programming language design repository for C#, containing the official language specification and the technical standards governing its grammar, type safety, and memory management. It functions as a collaborative space for the formal design and evolution of the language. The project manages a community-driven evolution process, utilizing a public proposal backlog to debate and adopt new features. This involves formal syntax prototyping and the engineering of the type system to refine the language's behavior and implementation. The scope of the specification cove

    Specifies the behavior of operators that provide fallback values when an expression is null.

    C#csharplanguage-design
    Voir sur GitHub↗12,636
  • tc39/proposal-pipeline-operatorAvatar de tc39

    tc39/proposal-pipeline-operator

    7,897Voir sur GitHub↗

    This is an ECMAScript proposal that introduces a pipeline operator for JavaScript, enabling left-to-right expression chaining with a dedicated placeholder token to reference the previous step's value. The proposal defines a syntax-only transformation that desugars to standard JavaScript, requiring no new runtime support or engine primitives. The pipeline operator allows chaining operations sequentially, passing each result to the next step in natural reading order. It includes a null-safe variant that short-circuits on nullish values, returning them unchanged and skipping remaining steps. Eac

    Implements a pipeline variant that short-circuits on nullish values, passing them through unchanged.

    HTMLjavascriptoperatorpipeline
    Voir sur GitHub↗7,897
  • vandadnp/flutter-tips-and-tricksAvatar de vandadnp

    vandadnp/flutter-tips-and-tricks

    6,822Voir sur GitHub↗

    This repository is a collection of practical code snippets and implementation patterns for Flutter and Dart. It serves as a comprehensive guide and reference for asynchronous programming, state management patterns, and UI component design. The project provides advanced language reference material covering generics, reflection, factory constructors, and null-aware operators. It also includes specific utilities for manipulating Dart collections, such as helper methods for transforming and filtering maps, lists, and iterables. The coverage extends to high-level capabilities including asynchrono

    Implements null-aware infix operators to handle nullable values gracefully.

    Dartdartflutterflutter-ui
    Voir sur GitHub↗6,822
  • estree/estreeAvatar de estree

    estree/estree

    5,421Voir sur GitHub↗

    ESTree est un schéma formel et un ensemble d'interfaces d'objets utilisés pour représenter le code source JavaScript comme un arbre de syntaxe abstraite standardisé. Il sert de format d'arbre commun et de standard de parsing pour assurer l'interopérabilité entre différents parsers JavaScript et outils de transformation. La spécification fournit un moyen cohérent de modéliser les constructions du langage, incluant les déclarations, les expressions et les déclarations de modules. Elle inclut des représentations détaillées pour les fonctionnalités modernes du langage telles que les classes, les identifiants privés et la logique de court-circuit comme le nullish coalescing et l'optional chaining. Le projet couvre une large surface d'outillage linguistique, incluant la modélisation de systèmes de modules avec imports dynamiques et alias d'export, la gestion des littéraux entiers larges, et le support d'extensions de syntaxe expérimentales pour les propositions de langage au stade précoce. Il définit également comment mapper les nœuds de l'arbre aux coordonnées sources originales pour un suivi précis de la localisation. Ce modèle standardisé facilite l'analyse de code statique, la transformation automatisée de code source et l'interopérabilité générale des outils de compilation.

    Models complex logic like optional chaining and nullish coalescing as structured AST nodes with distinct operands.

    astestreejavascript
    Voir sur GitHub↗5,421
  • helmfile/helmfileAvatar de helmfile

    helmfile/helmfile

    4,987Voir sur GitHub↗

    Helmfile is a declarative tool for managing Kubernetes Helm releases across multiple environments. It defines the desired state of releases in version-controlled YAML files and synchronizes the cluster to match that state, acting as both a release manager and a state sync orchestrator. The tool layers environment-specific values, secrets, and lifecycle hooks onto shared release definitions, enabling consistent multi-environment deployments. Helmfile distinguishes itself through several integrated capabilities: it generates separate dependency lockfiles per environment for staged rollout of ch

    Returns the first non-null value from a list of arguments and recovers from evaluation errors during template rendering.

    Gohelmkuberneteskustomize
    Voir sur GitHub↗4,987
  • knetic/govaluateAvatar de Knetic

    Knetic/govaluate

    3,940Voir sur GitHub↗

    govaluate is a Go expression evaluator and runtime logic parser. It functions as a dynamic rule engine that converts string-based expressions into executable operations, allowing for the calculation of mathematical and logical expressions at runtime. The library enables the execution of business rules and custom formulas without recompiling source code. It supports extending evaluation behavior through the injection of external parameters and the execution of user-defined custom functions. The system provides capabilities for dynamic data validation, including regular expression matching and

    Provides language-level operators to substitute missing or null results with defined fallback values.

    Goevaluationexpressiongo
    Voir sur GitHub↗3,940
  1. Home
  2. Software Engineering & Architecture
  3. Default Configuration Values
  4. Fallback Value Logic
  5. Null-Coalescing Operators

Explorer les sous-tags

  • Null Coalescing Template FunctionsHelmfile returns the first non-null value from a list of arguments and recovers from evaluation errors during template rendering. **Distinct from Null-Coalescing Operators:** Distinct from Null-Coalescing Operators: provides template-level null coalescing and error recovery, not language-level operators.
  • Null-Safe Pipeline OperatorsPipeline variants that short-circuit on nullish values, passing them through unchanged. **Distinct from Null-Coalescing Operators:** Distinct from Null-Coalescing Operators: applies null-coalescing behavior to pipeline chaining, not just fallback value selection.
  • Operator Node ModelingRepresenting language-level operators as structured nodes within a syntax tree. **Distinct from Null-Coalescing Operators:** Focuses on the AST representation of the operator, not the logic of the operator itself.