packages feed

stringtable-atom 0.0.2 → 0.0.3

raw patch · 4 files changed

+9/−8 lines, 4 files

Files

src/StringTable/Atom.hsc view
@@ -1,4 +1,3 @@-{-# OPTIONS_GHC -fffi -XTypeSynonymInstances -XDeriveDataTypeable #-} module StringTable.Atom(     Atom(),     ToAtom(..),
src/StringTable/AtomMap.hs view
@@ -1,5 +1,4 @@-{-# LANGUAGE GeneralizedNewtypeDeriving #-}-module StringTable.AtomMap  ( +module StringTable.AtomMap  (             -- * Map type               AtomMap(..), Key          -- instance Eq,Show 
src/StringTable/AtomSet.hs view
@@ -1,4 +1,4 @@-module StringTable.AtomSet  ( +module StringTable.AtomSet  (             -- * Set type               AtomSet(..)          -- instance Eq,Show 
stringtable-atom.cabal view
@@ -1,6 +1,6 @@ Name:                stringtable-atom-Version:             0.0.2-Category:            Data+Version:             0.0.3+Category:            Data, Pugs Synopsis:            Memoize Strings as Atoms for fast comparison and sorting, with maps and sets Description:         Memoize Strings as Atoms for fast comparison and sorting, with maps and sets License:             BSD3@@ -12,9 +12,12 @@  Build-Depends:       base, bytestring>=0.9.0.1, binary, containers Build-Type:          Simple-Tested-With:         GHC==6.8.2+Tested-With:         GHC==6.8.2, GHC==6.8.3 -extensions:          ForeignFunctionInterface, TypeSynonymInstances, DeriveDataTypeable, FlexibleInstances+extensions:          ForeignFunctionInterface, TypeSynonymInstances,+                     DeriveDataTypeable, FlexibleInstances,+                     GeneralizedNewtypeDeriving+ c-sources:           cbits/StringTable_cbits.c extra-source-files:  cbits/StringTable_cbits.h include-dirs:        cbits