Definition of Stream'
and functions on streams #
A stream Stream' α
is an infinite sequence of elements of α
. One can also think about it as an
infinite list. In this file we define Stream'
and some functions that take and/or return streams.
Note that we already have Stream
to represent a similar object, hence the awkward naming.
Prepend an element to a stream.
Equations
- Stream'.cons a s 0 = a
- Stream'.cons a s n.succ = s n
Prepend an element to a stream.
Equations
- Stream'.«term_::_» = Lean.ParserDescr.trailingNode `Stream'.«term_::_» 67 68 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " :: ") (Lean.ParserDescr.cat `term 67))
Head of a stream: Stream'.head s = Stream'.get s 0
.
Proposition saying that all elements of a stream satisfy a predicate.
Equations
- Stream'.All p s = ∀ (n : ℕ), p (s.get n)
a ∈ s
means that a = Stream'.get n s
for some n
.
Equations
- Stream'.instMembership = { mem := fun (s : Stream' α) (a : α) => Stream'.Any (fun (b : α) => a = b) s }
Apply a function f
to all elements of a stream s
.
Equations
- Stream'.map f s n = f (s.get n)
The constant stream: Stream'.get n (Stream'.const a) = a
.
Equations
- Stream'.const a x✝ = a
Iterates of a function as a stream.
Equations
- Stream'.iterate f a 0 = a
- Stream'.iterate f a n.succ = f (Stream'.iterate f a n)
Equations
- Stream'.corec f g a = Stream'.map f (Stream'.iterate g a)
Equations
- Stream'.corecOn a f g = Stream'.corec f g a
Use a state monad to generate a stream through corecursion
Equations
- Stream'.corecState cmd s = Stream'.corec Prod.fst (StateT.run cmd ∘ Prod.snd) (StateT.run cmd s)
Equations
- Stream'.unfolds g f a = Stream'.corec g f a
Interleave two streams.
Equations
- One or more equations did not get rendered due to their size.
Interleave two streams.
Equations
- Stream'.«term_⋈_» = Lean.ParserDescr.trailingNode `Stream'.«term_⋈_» 65 65 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ⋈ ") (Lean.ParserDescr.cat `term 66))
Elements of a stream with even indices.
Equations
- s.even = Stream'.corec Stream'.head (fun (s : Stream' α) => s.tail.tail) s
Append a stream to a list.
Equations
- Stream'.«term_++ₛ_» = Lean.ParserDescr.trailingNode `Stream'.«term_++ₛ_» 65 65 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ++ₛ ") (Lean.ParserDescr.cat `term 66))
take n s
returns a list of the n
first elements of stream s
Equations
- Stream'.take 0 x✝ = []
- Stream'.take n.succ x✝ = x✝.head :: Stream'.take n x✝.tail
Interpret a nonempty list as a cyclic stream.
Equations
- Stream'.cycle [] h = absurd ⋯ h
- Stream'.cycle (a :: l) x_2 = Stream'.corec Stream'.cycleF Stream'.cycleG (a, l, a, l)
Tails of a stream, starting with Stream'.tail s
.
Equations
An auxiliary definition for Stream'.inits
.
Equations
- One or more equations did not get rendered due to their size.
A constant stream, same as Stream'.const
.
Equations
Given a stream of functions and a stream of values, apply n
-th function to n
-th value.
Equations
- Stream'.«term_⊛_» = Lean.ParserDescr.trailingNode `Stream'.«term_⊛_» 75 75 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ⊛ ") (Lean.ParserDescr.cat `term 76))
The stream of natural numbers: Stream'.get n Stream'.nats = n
.
Equations
- Stream'.nats n = n