def
definition
def or abbrev
addNotes
show as:
view Lean formalization →
Last generation error: xAI API error (429): The model is currently at capacity due to high demand. Please try again in a few minutes. For guaranteed processing and availability, please request Provisioned Throughput: https://docs.x.ai/developers/advanced-api-usage/provisioned-throughput
formal statement (Lean)
156def addNotes {α : Type} (notes : List String) (m : Measurement α) : Measurement α :=
proof body
Definition body.
157 { m with notes := m.notes ++ notes }
158
159end Measurement
160
161/-- An observable extracts a `Measurement α` from some state type `S`. -/