Possibly infinite lists #
This file provides a Seq α
type representing possibly infinite lists (referred here as sequences).
It is encoded as an infinite stream of options such that if f n = none
, then
f m = none
for all m ≥ n
.
Seq1 α
is the type of nonempty sequences.
Instances For
The empty sequence
Equations
Instances For
Equations
- Stream'.Seq.instInhabited = { default := Stream'.Seq.nil }
Prepend an element to a sequence
Instances For
Get the nth element of a sequence (if it exists)
Equations
Instances For
A sequence has terminated at position n
if the value at position n
equals none
.
Instances For
It is decidable whether a sequence terminates at a given position.
A sequence terminates if there is some position n
at which it has terminated.
Instances For
Equations
- Stream'.Seq.instMembership = { mem := Stream'.Seq.Mem }
If a sequence terminated at position n
, it also terminated at m ≥ n
.
Recursion principle for sequences, compare with List.recOn
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Stream'.Seq.coeList = { coe := Stream'.Seq.ofList }
Equations
- Stream'.Seq.coeStream = { coe := Stream'.Seq.ofStream }
Equations
- Stream'.Seq.coeMLList = { coe := Stream'.Seq.ofMLList }
Translate a sequence into a MLList
.
Equations
- x✝.toMLList = match x✝.destruct with | none => MLList.nil | some (a, s') => MLList.cons a s'.toMLList
Instances For
Translate a sequence to a list. This function will run forever if run on an infinite sequence.
Instances For
The sequence of natural numbers some 0, some 1, ...
Equations
Instances For
Map a function over a sequence.
Instances For
Flatten a sequence of sequences. (It is required that the
sequences be nonempty to ensure productivity; in the case
of an infinite sequence of nil
, the first element is never
generated.)
Equations
- One or more equations did not get rendered due to their size.
Instances For
Take the first n
elements of the sequence (producing a list)
Equations
Instances For
Split a sequence at n
, producing a finite initial segment
and an infinite tail.
Equations
Instances For
Combine two sequences with a function
Equations
- Stream'.Seq.zipWith f s₁ s₂ = ⟨fun (n : ℕ) => Option.map₂ f (s₁.get? n) (s₂.get? n), ⋯⟩
Instances For
Pair two sequences into a sequence of pairs
Equations
Instances For
The length of a terminating sequence.
Equations
Instances For
Convert a sequence which is known to terminate into a list
Equations
Instances For
Convert a sequence which is known not to terminate into a stream
Equations
Instances For
Convert a sequence into either a list or a stream depending on whether it is finite or infinite. (Without decidability of the infiniteness predicate, this is not constructively possible.)
Equations
- s.toListOrStream = if h : s.Terminates then Sum.inl (s.toList h) else Sum.inr (s.toStream h)
Instances For
The statement of length_le_iff'
does not assume that the sequence terminates. For a
simpler statement of the theorem where the sequence is known to terminate see length_le_iff
The statement of length_le_iff
assumes that the sequence terminates. For a
statement of the where the sequence is not known to terminate see length_le_iff'
The statement of lt_length_iff'
does not assume that the sequence terminates. For a
simpler statement of the theorem where the sequence is known to terminate see lt_length_iff
The statement of length_le_iff
assumes that the sequence terminates. For a
statement of the where the sequence is not known to terminate see length_le_iff'
Equations
- Stream'.Seq.instFunctor = { map := @Stream'.Seq.map, mapConst := fun {α β : Type ?u.8} => Stream'.Seq.map ∘ Function.const β }
Convert a sequence into a list, embedded in a computation to allow for the possibility of infinite sequences (in which case the computation never returns anything).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Convert a Seq1
to a sequence.
Instances For
Equations
- Stream'.Seq1.coeSeq = { coe := Stream'.Seq1.toSeq }
Map a function on a Seq1
Instances For
The return
operator for the Seq1
monad,
which produces a singleton sequence.
Instances For
Equations
- Stream'.Seq1.instInhabited = { default := Stream'.Seq1.ret default }