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.
(
>.> ) :: (a -> b) -> (b -> c) -> a -> cghc-lib-parser GHC.Core.Map.Expr No documentation available.
(
<.> ) :: OsPath -> OsString -> OsPathghc-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"
(
>.> ) :: (a -> b) -> (b -> c) -> a -> cghc-lib-parser GHC.Data.TrieMap No documentation available.
(
<.> ) :: HsWrapper -> HsWrapper -> HsWrapperghc-lib-parser GHC.Tc.Types.Evidence No documentation available.
(
<.> ) :: Path a -> String -> Path ahackage-security Hackage.Security.Util.Path No documentation available.
(
#. ) :: Coercible b c => (b -> c) -> (a -> b) -> a -> cindexed-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.
-
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 .... -
sqlite-simple Database.SQLite.Simple No documentation available.
-
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 .... -
sqlite-simple Database.SQLite.Simple.Types No documentation available.