You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dhall previously used Data.Foldable.sequenceA_ (Data.Sequence.mapWithIndex f xs), but this is not optimal because it the result of mapWithIndex is materialized before being reduced by sequenceA_.
dhall-lang/dhall-haskell#2423 switches dhall to use itraverse_ from indexed-traversable which has a nice implementation in terms of Data.Sequence.foldMapWithIndex.
The text was updated successfully, but these errors were encountered:
…would be nice to have.
dhall
previously usedData.Foldable.sequenceA_ (Data.Sequence.mapWithIndex f xs)
, but this is not optimal because it the result ofmapWithIndex
is materialized before being reduced bysequenceA_
.dhall-lang/dhall-haskell#2423 switches
dhall
to useitraverse_
fromindexed-traversable
which has a nice implementation in terms ofData.Sequence.foldMapWithIndex
.The text was updated successfully, but these errors were encountered: