heaps 0.3.2 → 0.3.2.1
raw patch · 6 files changed
+16/−9 lines, 6 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- .gitignore +3/−0
- CHANGELOG.markdown +4/−0
- HLint.hs +1/−0
- LICENSE +1/−1
- heaps.cabal +4/−4
- src/Data/Heap.hs +3/−4
+ .gitignore view
@@ -0,0 +1,3 @@+dist+tags+TAGS
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.3.2.1+-------+* Haddock fix+ 0.3.2 ----- * Build without warnings on GHC 7.10
+ HLint.hs view
@@ -0,0 +1,1 @@+ignore "Use infix"
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2010, Edward Kmett+Copyright (c) 2010-2015, Edward Kmett All rights reserved. Redistribution and use in source and binary forms, with or without
heaps.cabal view
@@ -1,5 +1,5 @@ name: heaps-version: 0.3.2+version: 0.3.2.1 license: BSD3 license-file: LICENSE author: Edward A. Kmett@@ -9,12 +9,12 @@ bug-reports: http://github.com/ekmett/heaps/issues category: Data Structures synopsis: Asymptotically optimal Brodal/Okasaki heaps.-description: Asymptotically optimal Brodal/Okasaki bootstrapped skew-binomial heaps from the paper <http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.973 "Optimal Purely Functional Priority Queues">, extended with a 'Foldable' interface.-copyright: (c) 2010 Edward A. Kmett+description: Asymptotically optimal Brodal\/Okasaki bootstrapped skew-binomial heaps from the paper <http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.973 "Optimal Purely Functional Priority Queues">, extended with a 'Foldable' interface.+copyright: (c) 2010-2015 Edward A. Kmett tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.0.20150307 build-type: Simple cabal-version: >=1.8-extra-source-files: .travis.yml CHANGELOG.markdown README.markdown+extra-source-files: HLint.hs .gitignore .travis.yml CHANGELOG.markdown README.markdown source-repository head type: git
src/Data/Heap.hs view
@@ -1,12 +1,11 @@ {-# LANGUAGE CPP #-} {-# LANGUAGE DeriveDataTypeable #-}-#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707+#if __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE RoleAnnotations #-} #endif ----------------------------------------------------------------------------- -- |--- Module : Data.Heap--- Copyright : (c) Edward Kmett 2010+-- Copyright : (c) Edward Kmett 2010-2015 -- License : BSD-style -- Maintainer : ekmett@gmail.com -- Stability : experimental@@ -113,7 +112,7 @@ | Heap {-# UNPACK #-} !Int (a -> a -> Bool) {-# UNPACK #-} !(Tree a) deriving Typeable -#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707+#if __GLASGOW_HASKELL__ >= 707 type role Heap nominal #endif