English
A specialized destructor that maps a WPath along with a function to the drop prefix, yielding a path-compatible left descent.
Русский
Уточнённый деструктор для WPath, переводящий путь в левый спуск через drop-префикс.
LaTeX
$$$\\forall {n} {P} {a} {f} (h : P.WPath (⟨a, f⟩) ⟹ α),\\; P.drop.B a ⟹ α$ with the definition given$$
Lean4
/-- Specialized destructor on `WPath` -/
def wPathDestLeft {α : TypeVec n} {a : P.A} {f : P.last.B a → P.last.W} (h : P.WPath ⟨a, f⟩ ⟹ α) : P.drop.B a ⟹ α :=
fun i c => h i (WPath.root a f i c)