DavidArno / SuccincT

Discriminated unions, pattern matching and partial applications for C#
MIT License
267 stars 15 forks source link

Option<T>.None Optimization Fix #32

Closed megafinz closed 7 years ago

megafinz commented 7 years ago

Simplified caching of Option.None() value due to the fact that each generic type instance contains it's own static field instance, so there is no point to keep a dictionary that will eventually store a single value.