Skip to content

Commit

Permalink
Merge pull request #227 from BebeSparkelSparkel/type-operators
Browse files Browse the repository at this point in the history
  • Loading branch information
BebeSparkelSparkel authored Jul 12, 2024
2 parents 8ada6b1 + 4eea4f7 commit 6f27a4f
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mono-traversable/mono-traversable.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: mono-traversable
version: 1.0.17.0
version: 1.0.17.1
synopsis: Type classes for mapping, folding, and traversing monomorphic containers
description: Please see the README at <https://www.stackage.org/package/mono-traversable>
category: Data
Expand Down
2 changes: 1 addition & 1 deletion mono-traversable/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mono-traversable
version: 1.0.17.0
version: 1.0.17.1
synopsis: Type classes for mapping, folding, and traversing monomorphic containers
description: Please see the README at <https://www.stackage.org/package/mono-traversable>
category: Data
Expand Down
1 change: 1 addition & 0 deletions mono-traversable/src/Data/Containers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE TypeOperators #-}
-- | Warning: This module should be considered highly experimental.
module Data.Containers where

Expand Down
1 change: 1 addition & 0 deletions mono-traversable/src/Data/MonoTraversable/Unprefixed.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
-- | The functions in "Data.MonoTraversable" are all prefixed with the letter
-- @o@ to avoid conflicts with their polymorphic counterparts. This module
-- exports the same identifiers without the prefix, for all cases where the
Expand Down
1 change: 1 addition & 0 deletions mono-traversable/src/Data/Sequences.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE TypeOperators #-}
-- | Abstractions over sequential data structures, like lists and vectors.
module Data.Sequences where

Expand Down
1 change: 1 addition & 0 deletions mutable-containers/bench/deque.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
import Control.Monad
import Gauge.Main
import Data.Mutable
Expand Down
1 change: 1 addition & 0 deletions mutable-containers/bench/ref.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
import Control.Monad
import Gauge.Main
import Data.Mutable
Expand Down
2 changes: 1 addition & 1 deletion mutable-containers/mutable-containers.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: mutable-containers
version: 0.3.4.1
version: 0.3.4.2
synopsis: Abstractions and concrete implementations of mutable containers
description: See docs and README at <http://www.stackage.org/package/mutable-containers>
category: Data
Expand Down
2 changes: 1 addition & 1 deletion mutable-containers/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mutable-containers
version: 0.3.4.1
version: 0.3.4.2
synopsis: Abstractions and concrete implementations of mutable containers
description: See docs and README at <http://www.stackage.org/package/mutable-containers>
category: Data
Expand Down
1 change: 1 addition & 0 deletions mutable-containers/src/Data/Mutable/Class.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
-- | Various typeclasses for mutable containers.
module Data.Mutable.Class
( PrimMonad
Expand Down
1 change: 1 addition & 0 deletions mutable-containers/test/Spec.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE TypeOperators #-}

import Control.Monad (forM_)
import Data.Mutable
Expand Down

0 comments on commit 6f27a4f

Please sign in to comment.