Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. (>.>) :: (a -> b) -> (b -> c) -> a -> c

    ghc-lib-parser GHC.Core.Map.Expr

    No documentation available.

  2. (<.>) :: OsPath -> OsString -> OsPath

    ghc-lib-parser GHC.Data.OsPath

    Add an extension, even if there is already one there, equivalent to addExtension.

    "/directory/path" <.> "ext" == "/directory/path.ext"
    "/directory/path" <.> ".ext" == "/directory/path.ext"
    

  3. (>.>) :: (a -> b) -> (b -> c) -> a -> c

    ghc-lib-parser GHC.Data.TrieMap

    No documentation available.

  4. (<.>) :: HsWrapper -> HsWrapper -> HsWrapper

    ghc-lib-parser GHC.Tc.Types.Evidence

    No documentation available.

  5. (<.>) :: Path a -> String -> Path a

    hackage-security Hackage.Security.Util.Path

    No documentation available.

  6. ( #. ) :: Coercible b c => (b -> c) -> (a -> b) -> a -> c

    indexed-profunctors Data.Profunctor.Indexed

    Composition operator where the first argument must be an identity function up to representational equivalence (e.g. a newtype wrapper or unwrapper), and will be ignored at runtime.

  7. data h :. t

    sqlite-simple Database.SQLite.Simple

    A composite type to parse your custom data structures without having to define dummy newtype wrappers every time.

    instance FromRow MyData where ...
    
    instance FromRow MyData2 where ...
    
    then I can do the following for free:
    res <- query' c "..."
    forM res $ \(MyData{..} :. MyData2{..}) -> do
    ....
    

  8. (:.) :: h -> t -> (:.) h t

    sqlite-simple Database.SQLite.Simple

    No documentation available.

  9. data h :. t

    sqlite-simple Database.SQLite.Simple.Types

    A composite type to parse your custom data structures without having to define dummy newtype wrappers every time.

    instance FromRow MyData where ...
    
    instance FromRow MyData2 where ...
    
    then I can do the following for free:
    res <- query' c "..."
    forM res $ \(MyData{..} :. MyData2{..}) -> do
    ....
    

  10. (:.) :: h -> t -> (:.) h t

    sqlite-simple Database.SQLite.Simple.Types

    No documentation available.

Page 125 of many | Previous | Next