before<Z> method

InvertibleFunction<X, Z> before<Z>(
  1. InvertibleFunction<Y, Z> g
)

Returns composite function of g and this function

Composite function applies this function then g

Implementation

InvertibleFunction<X, Z> before<Z>(InvertibleFunction<Y, Z> g) => g.of(this);