On 10/12/21 1:29 AM, surlymoor wrote: > I just want to be able to have a returned value be implicitly wrapped if > its type is part of the `SumType` returned by the function. > > ```d > // -preview=shortenedMethods is awesome > SumType!(int, string) div(int a, int b) => b != 0 ? a : "Divisor is zero"; > ``` Hear, hear