An utility type ControlFlow<B, C>, which tells an operation whether it should exit early or go on. It's more clear than boolean or Result to show your code flow control explicity.
ControlFlow<B, C>
boolean
Result
Generated using TypeDoc
An utility type
ControlFlow<B, C>
, which tells an operation whether it should exit early or go on. It's more clear thanboolean
orResult
to show your code flow control explicity.