Re: C# implementation of Nullable (May)

2012-12-06 Thread Michael
On Wednesday, 5 December 2012 at 00:10:30 UTC, Jesse Phillips wrote: This article goes over a Nullable/Optional/Maybe implementation for C#. http://twistedoakstudios.com/blog/Post1130_when-null-is-not-enough-an-option-type-for-c http://www.reddit.com/r/programming/comments/14930f/when_null_is_

Re: C# implementation of Nullable (May)

2012-12-06 Thread bearophile
Jesse Phillips: It seems to be similar to that of std.typecons.Nullable with the following differences. Recently I've written something about Nullable: http://d.puremagic.com/issues/show_bug.cgi?id=9086 Bye, bearophile

C# implementation of Nullable (May)

2012-12-04 Thread Jesse Phillips
This article goes over a Nullable/Optional/Maybe implementation for C#. http://twistedoakstudios.com/blog/Post1130_when-null-is-not-enough-an-option-type-for-c http://www.reddit.com/r/programming/comments/14930f/when_null_is_not_enough_an_option_type_for_c/ It seems to be similar to that of st