Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/lambdapi/src/deps.ts>Fix

Deno TypeScript implementation of LambdaPi interpreter from "A Tutorial Implementation of a Dependently Typed Lambda Calculus" https://www.andres-loeh.de/LambdaPi/
Latest
function Fix
import { Fix } from "https://deno.land/x/lambdapi@v1.0.1/src/deps.ts";

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

Parameters

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