packages feed

vector-builder 0.3.3 → 0.3.3.1

raw patch · 3 files changed

+4/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

foldl-benchmark/Main.hs view
@@ -10,7 +10,7 @@   main =-  defaultMain [group 100, group 10000, group 1000000]+  defaultMain [group 1000, group 10000, group 100000, group 1000000, group 10000000, group 100000000]   where     group size =       bgroup (show size)
library/VectorBuilder/Private/Builder.hs view
@@ -7,7 +7,7 @@   -- |--- An abstrupdate over the size of a vector for the process of its construction.+-- An abstraction over the size of a vector for the process of its construction. --  -- It postpones the actual construction of a vector until the execution of the builder. data Builder element =@@ -40,7 +40,7 @@   Builder (B.length vector) (A.writeMany vector)  --- -- * Updates+-- * Updates  {-# INLINE snoc #-} snoc :: element -> Builder element -> Builder element
vector-builder.cabal view
@@ -1,7 +1,7 @@ name:   vector-builder version:-  0.3.3+  0.3.3.1 synopsis:   Vector builder description: