packages feed

strict-mutable-base 1.0.0.0 → 1.1.0.0

raw patch · 3 files changed

+8/−5 lines, 3 files

Files

CHANGELOG.md view
@@ -1,2 +1,5 @@+# strict-mutable-base-1.1.0.0 (2024-09-04)+* Rename `getChanContents'` to `getChan'Contents` for consistency.+ # strict-mutable-base-1.0.0.0 (2024-09-02) * Initial release.
src/Control/Concurrent/Chan/Strict.hs view
@@ -7,7 +7,7 @@   , writeChan'   , readChan'   , dupChan'-  , getChanContents'+  , getChan'Contents   , writeList2Chan'   ) where @@ -37,8 +37,8 @@ dupChan' (Chan' chan) = Chan' <$> Base.dupChan chan  -- | 'Base.getChanContents' for 'Chan''.-getChanContents' :: Chan' a -> IO [a]-getChanContents' (Chan' chan) = Base.getChanContents chan+getChan'Contents :: Chan' a -> IO [a]+getChan'Contents (Chan' chan) = Base.getChanContents chan  -- | 'Base.writeList2Chan' for 'Chan''. --
strict-mutable-base.cabal view
@@ -1,7 +1,7 @@ cabal-version:      3.0 build-type:         Simple name:               strict-mutable-base-version:            1.0.0.0+version:            1.1.0.0 homepage:           https://github.com/arybczak/strict-mutable license:            BSD-3-Clause license-file:       LICENSE@@ -9,7 +9,7 @@ maintainer:         andrzej@rybczak.net author:             Andrzej Rybczak -synopsis: Strict variants of mutable data types from @base@.+synopsis: Strict variants of mutable data types from base.  description: Strict (WHNF) variants of @Chan@, @IORef@ and @MVar@ for proactive              prevention of space leaks.