Giter Club home page Giter Club logo

Comments (5)

DavidArno avatar DavidArno commented on July 20, 2024

I really like this idea. The only small change I'd suggest is to use CaseOf, rather than CaseOfType, but if you are happy to code it and submit a PR, I'll go with your solution.

from succinct.

shekelator avatar shekelator commented on July 20, 2024

Ok, I'm working on it. A bit stuck at the moment, so I won't be offended if anyone else wants to implement it. But will be circling back to try to make it work shortly.

from succinct.

DavidArno avatar DavidArno commented on July 20, 2024

@shekelator,

Quick sanity check here. I have tried adding CaseOf<T> to Union<T1,T2>. However, as it's not possible to use OR to constrain a generic type, I can't do something like:

public UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T> CaseOf<T>()
    where T : T1|T2 ...

The best I can do is:

public UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T> CaseOf<T>()
{
    if (typeof(T) == typeof(T1))
    {
        return new UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T1>(RecordAction, this)
            as UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T>;
    }

    if (typeof(T) == typeof(T2))
    {
        return new UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T2>(RecordAction, this)
            as UnionPatternCaseHandler<UnionOfTwoPatternMatcher<T1, T2>, T>;
    }

    throw new InvalidCaseOfTypeException(typeof(T));
}

This means the following would be supported:

public static string ElseExample(Union<int, bool> value) => 
    value.Match<string>()
            .CaseOf<int>().Of(0).Do("0")
            .CaseOf<bool>().Of(false).Do("false")
            .Else("??")
            .Result();

and that'll work fine. However, eg CaseOf<string>()... could be used in the above expression and cannot be checked for at compile-time. Instead, an InvalidCaseOfTypeException would be thrown at runtime.

Does that found worth doing? If so, I'll add it as a new feature to the Union classes for the next release (likely 1-2 weeks away).

from succinct.

shekelator avatar shekelator commented on July 20, 2024

To me that definitely sounds worth doing. I tried something similar, but was stuck on the same issue. Many thanks! Sorry I wasn't able to contribute it myself.

from succinct.

DavidArno avatar DavidArno commented on July 20, 2024

This feature has been implemented in 1.6.0, which is now released.

from succinct.

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.