digitalmars.D.learn - D equivalent to Rust or Scala's Optional and Result and best practice
- dangbinghoo (6/6) Oct 18 2021 hi,
- James Blachly (12/22) Oct 18 2021 Not quite the same as tagged algebraic union ("sum type" == Rust enum)
- dangbinghoo (4/18) Oct 18 2021 thanks, all is great, but it's better if we have an article
- Soulsbane (3/9) Oct 18 2021 There is https://code.dlang.org/packages/optional plus a couple
hi, It seems that now we have `Optional` and `Result` packages in Dub, are these enough or fully equal to Rust or Scala's error-handling and pattern-matching? if these are enough for real-code, any best practice advice? thanks!
Oct 18 2021
On 10/18/21 12:03 PM, dangbinghoo wrote:hi, It seems that now we have `Optional` and `Result` packages in Dub, are these enough or fully equal to Rust or Scala's error-handling and pattern-matching? if these are enough for real-code, any best practice advice? thanks!Not quite the same as tagged algebraic union ("sum type" == Rust enum) are not (yet?) a language feature. That being said, I recently integrated mir's Algebraic and Nullable into a project. Integration was pretty easy, and the code was clear and easy to understand. That being said, the terminology of "Some", "None", "Result" and "Err" in Rust are yet easier to understand. http://mir-core.libmir.org/mir_algebraic.html Finally, in addition to `mir.algebraic`, `sumtype`, `Optional`, and `Result` packages, I would add that Tchaloupka's `expected` package looks great: https://code.dlang.org/packages/expected
Oct 18 2021
On Tuesday, 19 October 2021 at 00:01:47 UTC, James Blachly wrote:On 10/18/21 12:03 PM, dangbinghoo wrote:thanks, all is great, but it's better if we have an article explaining how to combine these for real-world project.[...]Not quite the same as tagged algebraic union ("sum type" == Rust enum) are not (yet?) a language feature. That being said, I recently integrated mir's Algebraic and Nullable into a project. Integration was pretty easy, and the code was clear and easy to understand. That being said, the terminology of "Some", "None", "Result" and "Err" in Rust are yet easier to understand. http://mir-core.libmir.org/mir_algebraic.html Finally, in addition to `mir.algebraic`, `sumtype`, `Optional`, and `Result` packages, I would add that Tchaloupka's `expected` package looks great: https://code.dlang.org/packages/expected
Oct 18 2021
On Monday, 18 October 2021 at 16:03:53 UTC, dangbinghoo wrote:hi, It seems that now we have `Optional` and `Result` packages in Dub, are these enough or fully equal to Rust or Scala's error-handling and pattern-matching? if these are enough for real-code, any best practice advice? thanks!There is https://code.dlang.org/packages/optional plus a couple more available in packages.
Oct 18 2021