of<W> method

InvertibleFunction<W, Y> of<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> of<W>(InvertibleFunction<W, X> g) =>
    InvertibleCompositeFunction<W, X, Y>(this, g);