packages feed

range-set-list 0.0.4 → 0.0.5

raw patch · 3 files changed

+6/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Data.RangeSet.List: full :: Bounded a => RSet a

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+### 0.0.5++- Export `full`+ ### 0.0.4  - Complement sets (require `Bounded`), `full` and `complement`
range-set-list.cabal view
@@ -1,5 +1,5 @@ name:                range-set-list-version:             0.0.4+version:             0.0.5 synopsis:            Memory efficient sets with continuous ranges of elements. description:         Memory efficient sets with continuous ranges of elements. List based implementation. Interface mimics "Data.Set" interface where possible. homepage:            https://github.com/phadej/range-set-list
src/Data/RangeSet/List.hs view
@@ -44,6 +44,7 @@    -- * Construction   , empty+  , full   , singleton   , singletonRange   , insert