@[inline]
def
Std.Range.forIn
{β : Type u}
{m : Type u → Type v}
[Monad m]
(range : Std.Range)
(init : β)
(f : Nat → β → m (ForInStep β))
:
m β
Equations
- Std.Range.forIn range init f = Std.Range.forIn.loop f range.stop range.start range.stop range.step init
Instances For
@[specialize #[]]
def
Std.Range.forIn.loop
{β : Type u}
{m : Type u → Type v}
[Monad m]
(f : Nat → β → m (ForInStep β))
(fuel : Nat)
(i : Nat)
(stop : Nat)
(step : Nat)
(b : β)
:
m β
Equations
- One or more equations did not get rendered due to their size.
- Std.Range.forIn.loop f 0 i stop step b = if i ≥ stop then pure b else pure b
Instances For
@[inline]
def
Std.Range.forIn'
{β : Type u}
{m : Type u → Type v}
[Monad m]
(range : Std.Range)
(init : β)
(f : (i : Nat) → i ∈ range → β → m (ForInStep β))
:
m β
Equations
- Std.Range.forIn' range init f = Std.Range.forIn'.loop range.start range.stop range.step f range.stop range.start ⋯ init
Instances For
@[specialize #[]]
def
Std.Range.forIn'.loop
{β : Type u}
{m : Type u → Type v}
[Monad m]
(start : Nat)
(stop : Nat)
(step : Nat)
(f : (i : Nat) → start ≤ i ∧ i < stop → β → m (ForInStep β))
(fuel : Nat)
(i : Nat)
(hl : start ≤ i)
(b : β)
:
m β
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[inline]
Equations
- Std.Range.forM range f = Std.Range.forM.loop f range.stop range.start range.stop range.step
Instances For
@[specialize #[]]
def
Std.Range.forM.loop
{m : Type u → Type v}
[Monad m]
(f : Nat → m PUnit)
(fuel : Nat)
(i : Nat)
(stop : Nat)
(step : Nat)
:
m PUnit
Equations
- Std.Range.forM.loop f 0 i stop step = if i ≥ stop then pure PUnit.unit else pure PUnit.unit
- Std.Range.forM.loop f (Nat.succ fuel_2) i stop step = if i ≥ stop then pure PUnit.unit else do f i Std.Range.forM.loop f fuel_2 (i + step) stop step
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.