Git Product home page Git Product logo

Comments (6)

saul avatar saul commented on May 24, 2024 1

Preliminary PR for this here: #33

from dunet.

domn1995 avatar domn1995 commented on May 24, 2024

I think this is a great idea. It would also work nicely when we add generic support since we cannot infer generic types with constructors.

from dunet.

domn1995 avatar domn1995 commented on May 24, 2024

I think #17 addresses this use case with a more superior implementation due to more control over the union members' types. What do you think @mumby0168 ?

from dunet.

mumby0168 avatar mumby0168 commented on May 24, 2024

I think #17 addresses this use case with a more superior implementation due to more control over the union members' types. What do you think @mumby0168 ?

Hi yes I like this, no reason the root record, the Result in the example cannot contain factory methods also. I.e Results.Ok() with the need of the new keyword, it could follow the same pattern with a bool to indicate you want the extra methods generating.

What do you think?

from dunet.

domn1995 avatar domn1995 commented on May 24, 2024

Hi yes I like this, no reason the root record, the Result in the example cannot contain factory methods also. I.e Results.Ok() with the need of the new keyword, it could follow the same pattern with a bool to indicate you want the extra methods generating.

What do you think?

I'm having a hard time seeing a generated factory method like Result.Ok() playing nicely with #17 also providing a way to instantiate that same union member with new Result.Ok() or Result.NewOk() due to name collisions. I'm inclined to prioritize the implementation of #17, and then reassessing how we feel about this issue after that.

from dunet.

domn1995 avatar domn1995 commented on May 24, 2024

After some more analysis, I'm going to defer this feature for the following reasons:

  • The ability of users to write Foo.NewThing() rather than new Foo.Thing() is not worth the increase in complexity and potential maintenance burden to this library.
  • Source generators already have a steep learning curve, due to a lot of hidden/non-explicit behavior. I believe a successful source generator should do as much as it can to minimize such behavior and take an explicit approach whenever possible. This feature runs counter to that philosophy.
  • With #28 on the docket, constructors and factory methods will not be necessary for most use cases. This is because users will be able to assign inner union values directly to the union type. This will bring Dunet unions in line with most other language's DU implementations and effectively obsolete constructors and factory methods. For example:
// No need for constructor or factory methods to instantiate union values.
StringOrNumber str = "foo";
StringOrNumber num = 123;

[Union]
partial record StringOrNumber
{
    partial record Str(string Value);
    partial record Num(double Value);
}

If the community remains interested in this feature, I would whole-heartedly support a separate package containing this functionality. I'd also be glad to link to it from Dunet's readme if that becomes the case.

from dunet.

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.