GithubHelp home page GithubHelp logo

`OptionalOrNull()` about superpower HOT 2 OPEN

nblumhardt avatar nblumhardt commented on September 27, 2024 1
`OptionalOrNull()`

from superpower.

Comments (2)

samblackburn avatar samblackburn commented on September 27, 2024 1

We've hit the same problem (in our case we wanted TextParser rather than TokenListParser).

Unfortunately your suggestion doesn't seem to return a nullable when working with value types. This example compiles even though it assigns the result to a non-nullable variable:

using System;
using Superpower;
using Superpower.Parsers;

#nullable enable

public class Program
{
    public static void Main()
    {
        TextParser<char> a = Character.EqualTo('a');
        TextParser<char> shouldBeNullable = a.OptionalOrNull();
    }
}

public static class Extensions
{
    public static TextParser<T?> OptionalOrNull<T>(
        this TextParser<T> parser)
    {
        return parser != null
            ? parser.Select(r => (T?) r).Or(Parse.Return<T?>(default))
            : throw new ArgumentNullException(nameof(parser));
    }
}

The best solution I've found is to have 2 overloads of the extension method.

In the following sample, the return type is nullable as it should be:

using System;
using Superpower;
using Superpower.Parsers;

#nullable enable

public class Program
{
    public static void Main()
    {
        TextParser<char> a = Character.EqualTo('a');
        TextParser<char?> correctlyNullable = a.OptionalOrNull();
    }
}

internal static class TextParserClassExtensions
{
    public static TextParser<T?> OptionalOrNull<T>(this TextParser<T> parser)
        where T : class
    {
        return parser != null
            ? parser.Select(r => (T?) r).Or(Parse.Return<T?>(null))
            : throw new ArgumentNullException(nameof(parser));
    }
}

internal static class TextParserParserStructExtensions
{
    public static TextParser<T?> OptionalOrNull<T>(this TextParser<T> parser)
        where T : struct
    {
        return parser != null
            ? parser.Select(r => (T?) r).Or(Parse.Return<T?>(null))
            : throw new ArgumentNullException(nameof(parser));
    }
}

Hope this helps!
Sam Blackburn, Redgate Software

from superpower.

nblumhardt avatar nblumhardt commented on September 27, 2024 1

Thank you, Sam! Hoping I'll have a chance to loop back around to this soon.

from superpower.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.