Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/applicative_parser/mod.ts>Fix

parser combinators applicative TypeScript deno module
Latest
function Fix
import { Fix } from "https://deno.land/x/applicative_parser@1.0.23/mod.ts";

Fix finds the fixed-point of the f parser argument. Used to implement dynamic recursion.

Parameters

f: (_: Parser<A, B>) => Parser<A, B>