import * as mod from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/applicable.ts";Applicable is a structure that allows a function to be applied inside of the
associated concrete structure. For example, Option may hold a value of
(a: A) => B inside of it. An Applicable for Option would allow one to
apply the A in an Option<A> to the function (a: A) => B in an
Option<(a: A) => B>, resulting in an Option<B>.
| getApplicableCombinable | Create a Combinable instance for an Applicable structure given a Combinable for the inner type. |
| Applicable | The Applicable interface. This interface includes the methods apply, map, and wrap. |