No-op terminator used to end imperative chains.
const f = (x: unknown): void => opt(x).onBoth(noop, noop).end;// same asconst g = (x: unknown): void => { opt(x).onBoth(noop, noop); };
No-op terminator used to end imperative chains.