Skip to content

Commit

Permalink
lower base lower bound
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed Jan 13, 2024
1 parent 3b1a5bf commit 9b7b005
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions queues.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ license: BSD-3-Clause
license-file: LICENSE
maintainer: Mitchell Rosen <[email protected]>, Travis Staton <[email protected]>
name: queues
stability: experimental
synopsis: Queue data structures.
tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1
version: 0.1.0
Expand Down Expand Up @@ -86,7 +85,7 @@ common component
library
import: component
build-depends:
base ^>= 4.17 || ^>= 4.18 || ^>= 4.19,
base ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,
exposed-modules:
Queue
Queue.Ephemeral
Expand Down
3 changes: 0 additions & 3 deletions src/Queue.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
-- It seems this is only needed on GHC <= 9.4
{-# LANGUAGE UndecidableInstances #-}

-- | A queue data structure with \(\mathcal{O}(1)\) (worst-case) operations, as described in
--
-- * Okasaki, Chris. \"Simple and efficient purely functional queues and deques.\" /Journal of functional programming/ 5.4 (1995): 583-592.
Expand Down

0 comments on commit 9b7b005

Please sign in to comment.