Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. isSubmapOfBy :: (a -> b -> Bool) -> Word64Map a -> Word64Map b -> Bool

    ghc-lib-parser GHC.Data.Word64Map.Strict.Internal

    The expression (isSubmapOfBy f m1 m2) returns True if all keys in m1 are in m2, and when f returns True when applied to their respective values. For example, the following expressions are all True:

    isSubmapOfBy (==) (fromList [(1,1)]) (fromList [(1,1),(2,2)])
    isSubmapOfBy (<=) (fromList [(1,1)]) (fromList [(1,1),(2,2)])
    isSubmapOfBy (==) (fromList [(1,1),(2,2)]) (fromList [(1,1),(2,2)])
    
    But the following are all False:
    isSubmapOfBy (==) (fromList [(1,2)]) (fromList [(1,1),(2,2)])
    isSubmapOfBy (<) (fromList [(1,1)]) (fromList [(1,1),(2,2)])
    isSubmapOfBy (==) (fromList [(1,1),(2,2)]) (fromList [(1,1)])
    

  2. type BitMap = Word64

    ghc-lib-parser GHC.Data.Word64Set.Internal

    No documentation available.

  3. bitmapOf :: Word64 -> BitMap

    ghc-lib-parser GHC.Data.Word64Set.Internal

    No documentation available.

  4. Opt_D_dump_cmm_procmap :: DumpFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  5. Opt_D_dump_mod_map :: DumpFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  6. Opt_FamAppCache :: GeneralFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  7. Opt_InfoTableMap :: GeneralFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  8. Opt_InfoTableMapWithFallback :: GeneralFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  9. Opt_InfoTableMapWithStack :: GeneralFlag

    ghc-lib-parser GHC.Driver.DynFlags

    No documentation available.

  10. ParMakeSemaphore :: FilePath -> ParMakeCount

    ghc-lib-parser GHC.Driver.DynFlags

    Use the specific semaphore sem to control parallelism (-jsem sem flag).

Page 607 of many | Previous | Next