pub fn mk_lambda(fvars: &[(FVarId, Name, Expr)], body: &Expr) -> ExprExpand description
Build a lambda abstraction from free variables.
Given body and free variables with their types [(x, A), (y, B)],
constructs λ (x : A) (y : B). body[x→#1, y→#0].