theorem
Std.Iter.filterMapWithPostcondition_eq_toIter_filterMapWithPostcondition_toIterM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
{f : β → Iterators.PostconditionT m (Option γ)}
:
theorem
Std.Iter.mapWithPostcondition_eq_toIter_mapWithPostcondition_toIterM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
{f : β → Iterators.PostconditionT m γ}
:
theorem
Std.Iter.filterMapM_eq_toIter_filterMapM_toIterM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[MonadAttach m]
{f : β → m (Option γ)}
:
theorem
Std.Iter.mapM_eq_toIter_mapM_toIterM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[MonadAttach m]
{f : β → m γ}
:
theorem
Std.Iter.step_filterMapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{f : β → Iterators.PostconditionT n (Option γ)}
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
:
(filterMapWithPostcondition f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let __do_lift ← (f out).operation
match __do_lift with
| ⟨none, h'⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterMapWithPostcondition f it') ⋯))
| ⟨some out', h'⟩ => pure (Shrink.deflate (PlausibleIterStep.yield (filterMapWithPostcondition f it') out' ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterMapWithPostcondition f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_filterWithPostcondition
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{f : β → Iterators.PostconditionT n (ULift Bool)}
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
:
(filterWithPostcondition f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let __do_lift ← (f out).operation
match __do_lift with
| ⟨{ down := false }, h'⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterWithPostcondition f it') ⋯))
| ⟨{ down := true }, h'⟩ => pure (Shrink.deflate (PlausibleIterStep.yield (filterWithPostcondition f it') out ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterWithPostcondition f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{n : Type w → Type w''}
{f : β → Iterators.PostconditionT n γ}
[Monad n]
[LawfulMonad n]
:
(mapWithPostcondition f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let out' ← (f out).operation
pure (Shrink.deflate (PlausibleIterStep.yield (mapWithPostcondition f it') out'.val ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (mapWithPostcondition f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_filterMapM
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{β' : Type w}
{f : β → n (Option β')}
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[MonadLiftT m n]
:
(filterMapM f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let __do_lift ← MonadAttach.attach (f out)
match __do_lift with
| ⟨none, hf⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterMapM f it') ⋯))
| ⟨some out', hf⟩ => pure (Shrink.deflate (PlausibleIterStep.yield (filterMapM f it') out' ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterMapM f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_filterM
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{f : β → n (ULift Bool)}
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[MonadLiftT m n]
:
(filterM f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let __do_lift ← MonadAttach.attach (f out)
match __do_lift with
| ⟨{ down := false }, hf⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterM f it') ⋯))
| ⟨{ down := true }, hf⟩ => pure (Shrink.deflate (PlausibleIterStep.yield (filterM f it') out ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (filterM f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_mapM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{n : Type w → Type w''}
{f : β → n γ}
[Monad n]
[MonadAttach n]
[LawfulMonad n]
:
(mapM f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => do
let out' ← MonadAttach.attach (f out)
pure (Shrink.deflate (PlausibleIterStep.yield (mapM f it') out'.val ⋯))
| ⟨IterStep.skip it', h⟩ => pure (Shrink.deflate (PlausibleIterStep.skip (mapM f it') ⋯))
| ⟨IterStep.done, h⟩ => pure (Shrink.deflate (PlausibleIterStep.done ⋯))
theorem
Std.Iter.step_filterMap
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{f : β → Option γ}
:
(filterMap f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ =>
match h' : f out with
| none => PlausibleIterStep.skip (filterMap f it') ⋯
| some out' => PlausibleIterStep.yield (filterMap f it') out' ⋯
| ⟨IterStep.skip it', h⟩ => PlausibleIterStep.skip (filterMap f it') ⋯
| ⟨IterStep.done, h⟩ => PlausibleIterStep.done ⋯
theorem
Std.Iter.val_step_filterMap
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{f : β → Option γ}
:
(filterMap f it).step.val = match it.step.val with
| IterStep.yield it' out =>
match f out with
| none => IterStep.skip (filterMap f it')
| some out' => IterStep.yield (filterMap f it') out'
| IterStep.skip it' => IterStep.skip (filterMap f it')
| IterStep.done => IterStep.done
a weaker version of step_filterMap that does not use dependent match
theorem
Std.Iter.step_map
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{f : β → γ}
:
(map f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ => PlausibleIterStep.yield (map f it') (f out) ⋯
| ⟨IterStep.skip it', h⟩ => PlausibleIterStep.skip (map f it') ⋯
| ⟨IterStep.done, h⟩ => PlausibleIterStep.done ⋯
def
Std.Iter.step_filter
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
{f : β → Bool}
:
(filter f it).step = match it.step with
| ⟨IterStep.yield it' out, h⟩ =>
if h' : f out = true then PlausibleIterStep.yield (filter f it') out ⋯ else PlausibleIterStep.skip (filter f it') ⋯
| ⟨IterStep.skip it', h⟩ => PlausibleIterStep.skip (filter f it') ⋯
| ⟨IterStep.done, h⟩ => PlausibleIterStep.done ⋯
Equations
- ⋯ = ⋯
Instances For
def
Std.Iter.val_step_filter
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
{f : β → Bool}
:
(filter f it).step.val = match it.step.val with
| IterStep.yield it' out => if f out = true then IterStep.yield (filter f it') out else IterStep.skip (filter f it')
| IterStep.skip it' => IterStep.skip (filter f it')
| IterStep.done => IterStep.done
Equations
- ⋯ = ⋯
Instances For
@[simp]
theorem
Std.Iter.toList_filterMap
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Option γ}
:
@[simp]
theorem
Std.Iter.toList_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[LawfulMonad m]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m γ}
:
@[simp]
theorem
Std.Iter.toList_mapM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[Iterators.Finite α Id]
{f : β → m γ}
:
@[simp]
theorem
Std.Iter.toList_filter
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Bool}
:
@[simp]
theorem
Std.Iter.toList_filterMapWithPostcondition_filterMapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{δ : Type w}
[Monad m]
[LawfulMonad m]
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
[LawfulMonadLiftT m n]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m (Option γ)}
{g : γ → Iterators.PostconditionT n (Option δ)}
:
(IterM.filterMapWithPostcondition g (filterMapWithPostcondition f it)).toList = (filterMapWithPostcondition
(fun (b : β) => do
let __do_lift ← liftM (f b)
match __do_lift with
| none => pure none
| some fb => g fb)
it).toList
@[simp]
theorem
Std.Iter.toList_mapWithPostcondition_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{δ : Type w}
[Monad m]
[LawfulMonad m]
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
[LawfulMonadLiftT m n]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m γ}
{g : γ → Iterators.PostconditionT n δ}
:
(IterM.mapWithPostcondition g (mapWithPostcondition f it)).toList = (mapWithPostcondition (fun (b : β) => liftM (f b) >>= g) it).toList
@[simp]
theorem
Std.Iter.toListRev_filterMap
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Option γ}
:
@[simp]
theorem
Std.Iter.toListRev_filter
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Bool}
:
@[simp]
theorem
Std.Iter.toArray_filterMap
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Option γ}
:
@[simp]
theorem
Std.Iter.toArray_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[LawfulMonad m]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m γ}
:
@[simp]
theorem
Std.Iter.toArray_mapM
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[Iterators.Finite α Id]
{f : β → m γ}
:
@[simp]
theorem
Std.Iter.toArray_filter
{α β : Type w}
[Iterator α Id β]
{it : Iter β}
[Iterators.Finite α Id]
{f : β → Bool}
:
@[simp]
theorem
Std.Iter.toArray_filterMapWithPostcondition_filterMapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{δ : Type w}
[Monad m]
[LawfulMonad m]
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
[LawfulMonadLiftT m n]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m (Option γ)}
{g : γ → Iterators.PostconditionT n (Option δ)}
:
(IterM.filterMapWithPostcondition g (filterMapWithPostcondition f it)).toArray = (filterMapWithPostcondition
(fun (b : β) => do
let __do_lift ← liftM (f b)
match __do_lift with
| none => pure none
| some fb => g fb)
it).toArray
@[simp]
theorem
Std.Iter.toArray_mapWithPostcondition_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{it : Iter β}
{m : Type w → Type w'}
{n : Type w → Type w''}
{δ : Type w}
[Monad m]
[LawfulMonad m]
[Monad n]
[LawfulMonad n]
[MonadLiftT m n]
[LawfulMonadLiftT m n]
[Iterators.Finite α Id]
{f : β → Iterators.PostconditionT m γ}
{g : γ → Iterators.PostconditionT n δ}
:
(IterM.mapWithPostcondition g (mapWithPostcondition f it)).toArray = (mapWithPostcondition (fun (b : β) => liftM (f b) >>= g) it).toArray
theorem
Std.Iter.forIn_filterMapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → Iterators.PostconditionT n (Option β₂)}
{init : γ}
{g : β₂ → γ → o (ForInStep γ)}
:
forIn (filterMapWithPostcondition f it) init g = forIn it init fun (out : β) (acc : γ) => do
let __do_lift ← liftM (f out).run
match __do_lift with
| some c => g c acc
| none => pure (ForInStep.yield acc)
theorem
Std.Iter.forIn_filterMapM
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadAttach n]
[WeaklyLawfulMonadAttach n]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → n (Option β₂)}
{init : γ}
{g : β₂ → γ → o (ForInStep γ)}
:
forIn (filterMapM f it) init g = forIn it init fun (out : β) (acc : γ) => do
let __do_lift ← liftM (f out)
match __do_lift with
| some c => g c acc
| none => pure (ForInStep.yield acc)
theorem
Std.Iter.forIn_filterMap
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Iterators.Finite α Id]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{it : Iter β}
{f : β → Option β₂}
{init : γ}
{g : β₂ → γ → n (ForInStep γ)}
:
theorem
Std.Iter.forIn_mapWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → Iterators.PostconditionT n β₂}
{init : γ}
{g : β₂ → γ → o (ForInStep γ)}
:
theorem
Std.Iter.forIn_mapM
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadAttach n]
[WeaklyLawfulMonadAttach n]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → n β₂}
{init : γ}
{g : β₂ → γ → o (ForInStep γ)}
:
theorem
Std.Iter.forIn_map
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{β₂ : Type w}
[Monad n]
[LawfulMonad n]
[Iterators.Finite α Id]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{it : Iter β}
{f : β → β₂}
{init : γ}
{g : β₂ → γ → n (ForInStep γ)}
:
theorem
Std.Iter.forIn_filterWithPostcondition
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → Iterators.PostconditionT n (ULift Bool)}
{init : γ}
{g : β → γ → o (ForInStep γ)}
:
theorem
Std.Iter.forIn_filterM
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
{o : Type w → Type u_1}
[Monad n]
[LawfulMonad n]
[Monad o]
[LawfulMonad o]
[MonadAttach n]
[WeaklyLawfulMonadAttach n]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
[Iterators.Finite α Id]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id o]
{it : Iter β}
{f : β → n (ULift Bool)}
{init : γ}
{g : β → γ → o (ForInStep γ)}
:
theorem
Std.Iter.forIn_filter
{α β γ : Type w}
[Iterator α Id β]
{n : Type w → Type w''}
[Monad n]
[LawfulMonad n]
[Iterators.Finite α Id]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{it : Iter β}
{f : β → Bool}
{init : γ}
{g : β → γ → n (ForInStep γ)}
:
theorem
Std.Iter.foldM_filterMapWithPostcondition
{α β γ δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[Monad o]
[LawfulMonad n]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → Iterators.PostconditionT n (Option γ)}
{g : δ → γ → o δ}
{init : δ}
{it : Iter β}
:
IterM.foldM g init (filterMapWithPostcondition f it) = foldM
(fun (d : δ) (b : β) => do
let __discr ← liftM (f b).run
match __discr with
| some c => g d c
| x => pure d)
init it
theorem
Std.Iter.foldM_filterMapM
{α β γ δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[Monad o]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → n (Option γ)}
{g : δ → γ → o δ}
{init : δ}
{it : Iter β}
:
IterM.foldM g init (filterMapM f it) = foldM
(fun (d : δ) (b : β) => do
let __discr ← liftM (f b)
match __discr with
| some c => g d c
| x => pure d)
init it
theorem
Std.Iter.foldM_mapWithPostcondition
{m : Type w → Type w'}
{α β γ δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[Monad n]
[Monad o]
[LawfulMonad m]
[LawfulMonad n]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → Iterators.PostconditionT n γ}
{g : δ → γ → o δ}
{init : δ}
{it : Iter β}
:
IterM.foldM g init (mapWithPostcondition f it) = foldM
(fun (d : δ) (b : β) => do
let c ← liftM (f b).run
g d c)
init it
theorem
Std.Iter.foldM_mapM
{α β γ δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[Monad o]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → n γ}
{g : δ → γ → o δ}
{init : δ}
{it : Iter β}
:
IterM.foldM g init (mapM f it) = foldM
(fun (d : δ) (b : β) => do
let c ← liftM (f b)
g d c)
init it
theorem
Std.Iter.foldM_filterWithPostcondition
{α β δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[Monad o]
[LawfulMonad n]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → Iterators.PostconditionT n (ULift Bool)}
{g : δ → β → o δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.foldM_filterM
{α β δ : Type w}
{n : Type w → Type w''}
{o : Type w → Type w'''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[Monad o]
[LawfulMonad o]
[IteratorLoop α Id n]
[IteratorLoop α Id o]
[LawfulIteratorLoop α Id n]
[LawfulIteratorLoop α Id o]
[MonadLiftT n o]
[LawfulMonadLiftT n o]
{f : β → n (ULift Bool)}
{g : δ → β → o δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.foldM_filterMap
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → Option γ}
{g : δ → γ → n δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.foldM_map
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → γ}
{g : δ → γ → n δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.foldM_filter
{α β δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → Bool}
{g : δ → β → n δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.fold_filterMapWithPostcondition
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → Iterators.PostconditionT n (Option γ)}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
IterM.fold g init (filterMapWithPostcondition f it) = foldM
(fun (d : δ) (b : β) => do
let __discr ← (f b).run
match __discr with
| some c => pure (g d c)
| x => pure d)
init it
theorem
Std.Iter.fold_filterMapM
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → n (Option γ)}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
IterM.fold g init (filterMapM f it) = foldM
(fun (d : δ) (b : β) => do
let __discr ← f b
match __discr with
| some c => pure (g d c)
| x => pure d)
init it
theorem
Std.Iter.fold_mapWithPostcondition
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → Iterators.PostconditionT n γ}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
IterM.fold g init (mapWithPostcondition f it) = foldM
(fun (d : δ) (b : β) => do
let c ← (f b).run
pure (g d c))
init it
theorem
Std.Iter.fold_mapM
{α β γ δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → n γ}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.fold_filterWithPostcondition
{α β δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[LawfulMonad n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → Iterators.PostconditionT n (ULift Bool)}
{g : δ → β → δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.fold_filterM
{α β δ : Type w}
{n : Type w → Type w''}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad n]
[MonadAttach n]
[LawfulMonad n]
[WeaklyLawfulMonadAttach n]
[IteratorLoop α Id n]
[LawfulIteratorLoop α Id n]
{f : β → n (ULift Bool)}
{g : δ → β → δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.fold_filterMap
{α β γ δ : Type w}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id Id]
[LawfulIteratorLoop α Id Id]
{f : β → Option γ}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
theorem
Std.Iter.fold_map
{α β γ δ : Type w}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id Id]
[LawfulIteratorLoop α Id Id]
{f : β → γ}
{g : δ → γ → δ}
{init : δ}
{it : Iter β}
:
@[simp]
theorem
Std.Iter.count_map
{α β β' : Type w}
[Iterator α Id β]
[IteratorLoop α Id Id]
[Iterators.Finite α Id]
[LawfulIteratorLoop α Id Id]
{it : Iter β}
{f : β → β'}
:
theorem
Std.Iter.anyM_filterMapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f : β → m (Option β')}
{p : β' → m (ULift Bool)}
:
IterM.anyM p (filterMapM f it) = IterM.anyM
(fun (x : β) => do
let __do_lift ← f x
match __do_lift with
| some fx => p fx
| none => pure { down := false })
(mapM pure it)
theorem
Std.Iter.anyM_eq_anyM_mapM_pure
{α β : Type}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[IteratorLoop α Id m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{p : β → m Bool}
:
This lemma expresses Iter.anyM in terms of IterM.anyM.
It requires all involved types to live in Type 0.
theorem
Std.Iter.anyM_mapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f : β → m β'}
{p : β' → m (ULift Bool)}
:
IterM.anyM p (mapM f it) = IterM.anyM
(fun (x : β) => do
let __do_lift ← f x
p __do_lift)
(mapM pure it)
theorem
Std.Iter.anyM_filterM
{α β : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f p : β → m (ULift Bool)}
:
theorem
Std.Iter.anyM_filterMap
{α β β' : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → Option β'}
{p : β' → m Bool}
:
theorem
Std.Iter.anyM_map
{α β β' : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → β'}
{p : β' → m Bool}
:
theorem
Std.Iter.anyM_filter
{α β : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → Bool}
{p : β → m Bool}
:
theorem
Std.Iter.any_filterMapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m (Option β')}
{p : β' → Bool}
:
theorem
Std.Iter.any_mapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m β'}
{p : β' → Bool}
:
theorem
Std.Iter.any_filterM
{α β : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m (ULift Bool)}
{p : β → Bool}
:
theorem
Std.Iter.any_map
{α β β' : Type w}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id Id]
[LawfulIteratorLoop α Id Id]
{it : Iter β}
{f : β → β'}
{p : β' → Bool}
:
theorem
Std.Iter.allM_filterMapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f : β → m (Option β')}
{p : β' → m (ULift Bool)}
:
IterM.allM p (filterMapM f it) = IterM.allM
(fun (x : β) => do
let __do_lift ← f x
match __do_lift with
| some fx => p fx
| none => pure { down := true })
(mapM pure it)
theorem
Std.Iter.allM_eq_allM_mapM_pure
{α β : Type}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[IteratorLoop α Id m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{p : β → m Bool}
:
This lemma expresses Iter.allM in terms of IterM.allM.
It requires all involved types to live in Type 0.
theorem
Std.Iter.allM_mapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f : β → m β'}
{p : β' → m (ULift Bool)}
:
IterM.allM p (mapM f it) = IterM.allM
(fun (x : β) => do
let __do_lift ← f x
p __do_lift)
(mapM pure it)
theorem
Std.Iter.allM_filterM
{α β : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
{it : Iter β}
{f p : β → m (ULift Bool)}
:
theorem
Std.Iter.allM_filterMap
{α β β' : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → Option β'}
{p : β' → m Bool}
:
theorem
Std.Iter.allM_map
{α β β' : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → β'}
{p : β' → m Bool}
:
theorem
Std.Iter.allM_filter
{α β : Type w}
{m : Type → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[Monad m]
[IteratorLoop α Id m]
[LawfulMonad m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → Bool}
{p : β → m Bool}
:
theorem
Std.Iter.all_filterMapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m (Option β')}
{p : β' → Bool}
:
theorem
Std.Iter.all_mapM
{α β β' : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m β'}
{p : β' → Bool}
:
theorem
Std.Iter.all_filterM
{α β : Type w}
{m : Type w → Type w'}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id m]
[Monad m]
[MonadAttach m]
[LawfulMonad m]
[WeaklyLawfulMonadAttach m]
[LawfulIteratorLoop α Id m]
{it : Iter β}
{f : β → m (ULift Bool)}
{p : β → Bool}
:
theorem
Std.Iter.all_map
{α β β' : Type w}
[Iterator α Id β]
[Iterators.Finite α Id]
[IteratorLoop α Id Id]
[LawfulIteratorLoop α Id Id]
{it : Iter β}
{f : β → β'}
{p : β' → Bool}
: