pith. machine review for the scientific record. sign in
def

iterate

definition
show as:
view math explainer →
module
IndisputableMonolith.Compat.FunctionIterate
domain
Compat
line
19 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Compat.FunctionIterate on GitHub at line 19.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

used by

formal source

  16variable {α : Sort u}
  17
  18/-- Compatibility definition: iterate `f` for `n` steps starting from `a`. -/
  19def iterate (f : α → α) (n : Nat) (a : α) : α :=
  20  Nat.iterate f n a
  21
  22end Function