Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sqlSetList :: (MonadState SqlInsert m, Show a, ToSQL a) => SQL -> [a] -> m ()hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.
sqlSetListWithDefaults :: (MonadState SqlInsert m, Show a, ToSQL a) => SQL -> [Maybe a] -> m ()hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.
sqlUpdateSet :: SqlUpdate -> [(SQL, SQL)]hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.
-
An efficient implementation of integer sets. Since many function names (but not the type name) clash with Prelude names, this module is usually imported qualified, e.g.
import Data.IntSet (IntSet) import qualified Data.IntSet as IntSet
The implementation is based on big-endian patricia trees. This data structure performs especially well on binary operations like union and intersection. However, my benchmarks show that it is also (much) faster on insertions and deletions when compared to a generic size-balanced set implementation (see Data.Set).- Chris Okasaki and Andy Gill, "Fast Mergeable Integer Maps", Workshop on ML, September 1998, pages 77-86, http://citeseer.ist.psu.edu/okasaki98fast.html
- D.R. Morrison, "/PATRICIA -- Practical Algorithm To Retrieve Information Coded In Alphanumeric/", Journal of the ACM, 15(4), October 1968, pages 514-534.
-
intern Data.Interned.IntSet A set of integers.
isProperSubsetOf :: IntSet -> IntSet -> Boolintern Data.Interned.IntSet O(n+m). Is this a proper subset? (ie. a subset but not equal).
isSubsetOf :: IntSet -> IntSet -> Boolintern Data.Interned.IntSet O(n+m). Is this a subset? (s1 isSubsetOf s2) tells whether s1 is a subset of s2.
clientStoreClientIdSet :: ClientStore ci si a -> Set cimergeful Data.Mergeful.Collection The set of client ids. These are only the client ids of the added items that have not been synced yet.
clientStoreSyncIdSet :: Ord si => ClientStore ci si a -> Set simergeful Data.Mergeful.Collection The set of server ids. This includes the ids of items that have been marked as deleted.
clientStoreUndeletedSyncIdSet :: Ord si => ClientStore ci si a -> Set simergeful Data.Mergeful.Collection The set of server ids. This does not include the ids of items that have been marked as deleted.