82structure LedgerPage where 83 /-- The events on this page -/ 84 events : List LedgerEvent 85 /-- The balance: sum of all flows -/ 86 balance : ℤ := events.foldl (fun acc e => acc + e.flow) 0
proof body
Definition body.
87 88/-- Compute the balance of a list of events. -/
used by (2)
From the project-wide theorem graph. These declarations reference this one in their body.