Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. SnapshotRepoList :: NonEmpty SnapshotRepoPattern -> SnapshotRepoSelection

    bloodhound Database.Bloodhound.Common.Types

    No documentation available.

  2. fromList :: (a -> [Hash]) -> Int -> [a] -> Bloom a

    bloomfilter Data.BloomFilter

    Create an immutable Bloom filter, populating it from a list of values. Here is an example that uses the cheapHashes function from the Data.BloomFilter.Hash module to create a hash function that returns three hashes.

    import Data.BloomFilter.Hash (cheapHashes)
    
    filt = fromList (cheapHashes 3) 1024 ["foo", "bar", "quux"]
    
    

  3. insertList :: [a] -> Bloom a -> Bloom a

    bloomfilter Data.BloomFilter

    Create a new Bloom filter from an existing one, with the given members added. This function may be expensive, as it is likely to cause the underlying bit array to be copied. Repeated applications of this function with itself are subject to fusion.

  4. easyList :: Hashable a => Double -> [a] -> Bloom a

    bloomfilter Data.BloomFilter.Easy

    Create a Bloom filter with the given false positive rate and members. The hash functions used are computed by the cheapHashes function from the Hash module.

  5. hashList32 :: Storable a => [a] -> Word32 -> IO Word32

    bloomfilter Data.BloomFilter.Hash

    Compute a 32-bit hash of a list of Storable instances.

  6. hashList64 :: Storable a => [a] -> Word64 -> IO Word64

    bloomfilter Data.BloomFilter.Hash

    Compute a 64-bit hash of a list of Storable instances.

  7. fromList :: Int -> [a] -> BQueue a

    bounded-queue Data.Queue.Bounded

    Naively keeps the first <math> values of the input list (as defined by the given limiting Int value) and does not attempt any elegant queue-like cycling.

  8. fromList :: [(ByteString, a)] -> Trie a

    bytestring-trie Data.Trie

    Convert association list into a trie. On key conflict, values earlier in the list shadow later ones.

  9. toList :: Trie a -> [(ByteString, a)]

    bytestring-trie Data.Trie

    Convert trie into association list. The list is ordered according to the keys. Warning: This function suffers Bug #25.

  10. toListBy :: (ByteString -> a -> b) -> Trie a -> [b]

    bytestring-trie Data.Trie

    Convert a trie into a list using a function. Resulting values are in key-sorted order. Warning: This function suffers Bug #25.

Page 188 of many | Previous | Next