Zulip Chat Archive
Stream: Is there code for X?
Topic: induction with, with implicit arguments
Antoine Chambert-Loir (Feb 16 2024 at 14:37):
What is the syntax for induction
when the inductive assertions have implicit arguments, such as docs#Finset.induction_on ?
I wanted to type
induction s using Finset.induction_on with
| empty => ...
| insert {a} {s} has ih => …
but that doesn't seem to work.
Eric Wieser (Feb 16 2024 at 14:44):
| @insert a s has ih => …
, I think
Last updated: May 02 2025 at 03:31 UTC