after<W> method

InvertibleFunction<W, Y> after<W>(
  1. InvertibleFunction<W, X> g
)

Returns composite function of this function and g

Composite function applies g then this function

Implementation

InvertibleFunction<W, Y> after<W>(InvertibleFunction<W, X> g) => of(g);