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

x/lambdapi/src/deps.ts>between

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

between applies parser ps then parser p then parser pe, but only returns the result of parser p.

Parameters

ps: Parser<A, B>
pe: Parser<A, C>
p: Parser<A, D>