Loading search index…
No recent searches
No results for "Query here"
Applies a function to a self-applied argument. Useful for recursive patterns and self-referential computations.
export const Lark = (x: Fn) => (y: Fn) => x(y(y)); export const L = Lark;
const apply = (x: any) => x; Lark(apply)((f: any) => 5); // 5