bidiCastNarrow<A, B extends A> static method

BiDi<A, B> bidiCastNarrow<A, B extends A>()

Implementation

static BiDi<A, B> bidiCastNarrow<A, B extends A>() => BiDi(
  forward: (a) => a as B,
  backward: (b) => b,
);