foreEach method

Either<L, void> foreEach(
  1. void f(
    1. R r
    )
)

Implementation

Either<L, void> foreEach(void Function(R r) f) => map(f);