packages feed

intset 0.1.0.1 → 0.1.0.2

raw patch · 5 files changed

+19/−16 lines, 5 files

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2013, Sam T.+Copyright (c) 2013, Sam Truzjan  All rights reserved. @@ -13,7 +13,7 @@       disclaimer in the documentation and/or other materials provided       with the distribution. -    * Neither the name of Sam T. nor the names of other+    * Neither the name of Sam Truzjan nor the names of other       contributors may be used to endorse or promote products derived       from this software without specific prior written permission. 
intset.cabal view
@@ -1,16 +1,16 @@ name:                  intset-version:               0.1.0.1+version:               0.1.0.2 category:              Data license:               BSD3 license-file:          LICENSE-author:                Sam T.-maintainer:            Sam T. <pxqr.sta@gmail.com>-copyright:             (c) 2013, Sam T.+author:                Sam Truzjan+maintainer:            Sam Truzjan <pxqr.sta@gmail.com>+copyright:             (c) 2013, Sam Truzjan homepage:              https://github.com/pxqr/intset bug-reports:           https://github.com/pxqr/intset/issues build-type:            Simple cabal-version:         >=1.8-synopsis:              Pure, fast and memory efficient integer sets.+synopsis:              Pure, mergeable, succinct Int sets. description:     This library provides persistent, time and space efficient integer@@ -18,10 +18,6 @@    suffixes compaction. In randomized settings this structure expected    to be as fast as Data.IntSet from containers, but if a sets is    likely to have long continuous intervals it should be much faster.-   .-   [/Release notes/]-   .-     * /0.1.0.0:/ Initial version.   extra-source-files:    README.md@@ -31,6 +27,12 @@ source-repository head   type:                git   location:            git://github.com/pxqr/intset.git++source-repository this+  type:                git+  location:            git://github.com/pxqr/intset.git+  branch:              master+  tag:                 v0.1.0.2   flag testing
src/Data/IntervalSet.hs view
@@ -1,5 +1,5 @@ -- |---   Copyright   :  (c) Sam T. 2013+--   Copyright   :  (c) Sam Truzjan 2013 --   License     :  BSD3 --   Maintainer  :  pxqr.sta@gmail.com --   Stability   :  experimental@@ -32,8 +32,9 @@ --     single interval). -- --   Note that some operations will take centuries to compute. For---   exsample @map id universe@ will never end as well as 'filter'---   applied to 'universe', 'naturals', 'positives' or 'negatives'.+--   example @map id universe@ will a long time to end as well as+--   'filter' applied to 'universe', 'naturals', 'positives' or+--   'negatives'. -- --   Also note that some operations like 'union', 'intersection' and --   'difference' have overriden from default fixity, so use these
src/Data/IntervalSet/ByteString.hs view
@@ -1,5 +1,5 @@ -- |---   Copyright   :  (c) Sam T. 2013+--   Copyright   :  (c) Sam Truzjan 2013 --   License     :  BSD3 --   Maintainer  :  pxqr.sta@gmail.com --   Stability   :  experimental
src/Data/IntervalSet/Internal.hs view
@@ -1,5 +1,5 @@ -- |---   Copyright   :  (c) Sam T. 2013+--   Copyright   :  (c) Sam Truzjan 2013 --   License     :  BSD3 --   Maintainer  :  pxqr.sta@gmail.com --   Stability   :  experimental