yieldparser icon indicating copy to clipboard operation
yieldparser copied to clipboard

Support guards

Open RoyalIcing opened this issue 3 years ago • 0 comments
trafficstars

yield guard(digit <= 255, "Must be less than 255");
// Returns Error("Must be less than 255") if true, null if false.

Or could support just using ternary:

yield digit <= 255 ? new Error("Must be less than 255") : null;

RoyalIcing avatar Mar 04 '22 05:03 RoyalIcing