hledger/hledger-lib/Hledger
Simon Michael ddef7d722d lib: update journal account names api
Now we have:

-- | Sorted unique account names posted to by this journal's transactions.
journalAccountNamesUsed :: Journal -> [AccountName]

-- | Sorted unique account names implied by this journal's transactions -
-- accounts posted to and all their implied parent accounts.
journalAccountNamesImplied :: Journal -> [AccountName]

-- | Sorted unique account names declared by account directives in this journal.
journalAccountNamesDeclared :: Journal -> [AccountName]

-- | Sorted unique account names declared by account directives or posted to
-- by transactions in this journal.
journalAccountNamesDeclaredOrUsed :: Journal -> [AccountName]

-- | Sorted unique account names declared by account directives, or posted to
-- or implied as parents by transactions in this journal.
journalAccountNamesDeclaredOrImplied :: Journal -> [AccountName]

-- | Convenience/compatibility alias for journalAccountNamesImpliedOrUsed.
journalAccountNames :: Journal -> [AccountName]
2017-12-29 12:18:04 -08:00
..
Data lib: update journal account names api 2017-12-29 12:18:04 -08:00
Read lib: Allow balance-only entries in csv reader 2017-12-14 18:26:29 -08:00
Reports cli: --auto adds automated postings to reports 2017-11-26 14:57:41 +00:00
Utils lib: fix backtracking in periodexpr parser 2017-11-27 06:38:47 -08:00
Data.hs cli: --forecast adds periodic transactions to reports 2017-11-26 14:57:41 +00:00
Query.hs lib: Fix filtering by payee and note (#598) 2017-09-05 08:37:19 -07:00
Read.hs fix warnings/errors found by make stacktest 2017-09-30 13:00:22 -10:00
Reports.hs lib: Implemented a testing context for the module MultiBalanceReports. 2017-07-15 08:02:03 +01:00
Utils.hs add & use simpler readJournalFilesWithOpts/InputOpts api 2017-09-14 17:43:32 -07:00