Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. (<.>) :: ToFilePath filepath => filepath -> Text -> FilePath

    shelly Shelly.Pipe

    Uses System.FilePath, but can automatically convert a Text.

  2. 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
    ....
    

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

    sqlite-simple Database.SQLite.Simple

    No documentation available.

  4. 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
    ....
    

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

    sqlite-simple Database.SQLite.Simple.Types

    No documentation available.

  6. (+.*) :: C a v => v -> (a, v) -> v

    synthesizer-core Synthesizer.Interpolation.Class

    Infix variant of scaleAccumulate.

  7. (+.+) :: Table rh ch a -> SemiTable rh a -> Table rh ch a

    tabular Text.Tabular

    below

  8. (^..^) :: Table rh ch a -> SemiTable ch a -> Table rh ch a

    tabular Text.Tabular

    besides

  9. (<.>) :: FilePath -> String -> FilePath

    turtle Turtle

    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"
    

  10. newtype ((f :: k2 -> Type) :.: (g :: k1 -> k2)) (p :: k1)

    barbies Barbies.Internal

    Composition of functors

Page 128 of many | Previous | Next