ixset-typed-hashable-instance 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
ixset-typed-hashable-instance.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: ixset-typed-hashable-instance-version: 0.1.0.0+version: 0.1.0.1 synopsis: Hashable instance for ixset-typed. description: Please see the README on GitHub at <https://github.com/githubuser/ixset-typed-hashable-instance#readme> category: Data Structures
src/Data/IxSet/Typed/Hashable.hs view
@@ -1,7 +1,7 @@ module Data.IxSet.Typed.Hashable where import Data.IxSet.Typed-import Hashable+import Data.Hashable instance (Indexable ixs x, Hashable x) => Hashable (IxSet ixs x) where hashWithSalt n x = n `hashWithSalt` toList x