Remove redundant Ord constraint from toHashMapIO

This commit is contained in:
Harendra Kumar 2024-07-29 21:15:15 +05:30
parent 0e0fcb41b5
commit ccb8a5e8d8

View File

@ -62,6 +62,6 @@ import Streamly.Internal.Data.IsMap.HashMap ()
-- /Pre-release/
--
{-# INLINE toHashMapIO #-}
toHashMapIO :: (MonadIO m, Hashable k, Ord k) =>
toHashMapIO :: (MonadIO m, Hashable k) =>
(a -> k) -> Fold m a b -> Fold m a (HashMap k b)
toHashMapIO = toContainerIO