lib: journalApplyAliases performance tweak
This commit is contained in:
parent
0dc8eca68a
commit
ea0d4901ab
@ -1230,6 +1230,8 @@ postingFindTag tagname p = find ((tagname==) . fst) $ postingAllTags p
|
|||||||
-- | Apply some account aliases to all posting account names in the journal, as described by accountNameApplyAliases.
|
-- | Apply some account aliases to all posting account names in the journal, as described by accountNameApplyAliases.
|
||||||
-- This can fail due to a bad replacement pattern in a regular expression alias.
|
-- This can fail due to a bad replacement pattern in a regular expression alias.
|
||||||
journalApplyAliases :: [AccountAlias] -> Journal -> Either RegexError Journal
|
journalApplyAliases :: [AccountAlias] -> Journal -> Either RegexError Journal
|
||||||
|
-- short circuit the common case, just in case there's a performance impact from txnTieKnot etc.
|
||||||
|
journalApplyAliases [] j = Right j
|
||||||
journalApplyAliases aliases j =
|
journalApplyAliases aliases j =
|
||||||
case mapM (transactionApplyAliases aliases) $ jtxns j of
|
case mapM (transactionApplyAliases aliases) $ jtxns j of
|
||||||
Right ts -> Right j{jtxns = ts}
|
Right ts -> Right j{jtxns = ts}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user