map<W> method

  1. @override
EitherExtended<L, W> map<W>(
  1. W f(
    1. R r
    )
)
override

Implementation

@override
EitherExtended<L, W> map<W>(W Function(R r) f) => RightExtended<L, W>(f(_r));