fold<T> method
Executes ifLeft with the value.
Implementation
@override
T fold<T>(T Function(L) ifLeft, T Function(R) ifRight) => ifLeft(_value);
Executes ifLeft with the value.
@override
T fold<T>(T Function(L) ifLeft, T Function(R) ifRight) => ifLeft(_value);