kirillrakhman
05/24/2017, 6:05 PMAvoid using multiple labeled returns in a lambda. Consider restructuring the lambda so that it will have a single exit point. If that's not possible or not clear enough, convert the lambda into an anonymous function.if the lambda doesn't close over any locals, why not a proper method?
yole
05/26/2017, 1:15 PMkirillrakhman
05/26/2017, 1:15 PM