cast 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- cast.cabal +1/−1
- src/Pattern/Cast.hs +3/−1
cast.cabal view
@@ -1,5 +1,5 @@ name: cast-version: 0.1.0.0+version: 0.1.0.1 synopsis: Abstact cast pattern description: Generelized pattern that allow cast one type for another.
src/Pattern/Cast.hs view
@@ -1,7 +1,9 @@ {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE FlexibleInstances #-} -module Pattern.Cast where+module Pattern.Cast+ ( Cast (..)+ ) where class Cast a b where cast :: a -> b