hledger/RawLedger.hs

16 lines
323 B
Haskell
Raw Normal View History

module RawLedger
where
import qualified Data.Map as Map
import Utils
import Types
2007-07-03 03:41:07 +04:00
import AccountName
import Entry
instance Show RawLedger where
show l = printf "RawLedger with %d entries"
((length $ entries l) +
(length $ modifier_entries l) +
(length $ periodic_entries l))