Skip to content

Commit

Permalink
hashtable-linear: changes hashtable implementatino to use Linear
Browse files Browse the repository at this point in the history
rather than Cuckoo
  • Loading branch information
Ben Selfridge authored and benjaminselfridge committed Mar 9, 2020
1 parent 05b34f7 commit b217641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/Parameterized/HashTable.hs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module Data.Parameterized.HashTable

import Control.Applicative
import Control.Monad.ST
import qualified Data.HashTable.ST.Cuckoo as H
import qualified Data.HashTable.ST.Linear as H
import GHC.Exts (Any)
import Unsafe.Coerce

Expand Down

0 comments on commit b217641

Please sign in to comment.