Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. ($++$) :: Doc ann -> Doc ann -> Doc ann

    language-bash Language.Bash.Pretty

    Behaves like $+$ except that if one of the documents was empty we do not concatenate at all. mempty is the identity of $+$:

    x $++$ mempty == x
    
    and
    mempty $++$ y == y
    

  2. ($<>) :: RAct x s => x -> s -> x

    lr-acts Data.Act.Act

    Infix synonym or ract The acting part is on the right of the operator (symbolized by <>) and the actee on the left (symbolized by $), hence the notation $<>.

  3. ($:) :: forall (m :: Type -> Type) a . (Monad m, ToHtml a) => (HtmlT m () -> HtmlT m ()) -> a -> HtmlT m ()

    lucid-extras Lucid.Bootstrap3

    No documentation available.

  4. ($:>) :: String -> PStruct a -> PStruct a

    servant-cli Servant.CLI.Internal.PStruct

    Shift by a path component.

  5. ($|) :: forall (m :: Type -> Type) b . MonadUnliftIO m => Segment m () -> Segment m b -> Segment m b

    shell-conduit Data.Conduit.Shell

    Fuse two segments (either processes or conduits).

  6. ($|) :: forall (m :: Type -> Type) b . MonadUnliftIO m => Segment m () -> Segment m b -> Segment m b

    shell-conduit Data.Conduit.Shell.Process

    Fuse two segments (either processes or conduits).

  7. ($?) :: IO a -> IO a -> IO a

    shellmet Shellmet

    Do some IO actions when process failed with IOError.

    >>> "echo" ["0"] $? putStrLn "Command failed"
    ⚙  echo 0
    0
    
    >>> "exit" ["1"] $? putStrLn "Command failed"
    ⚙  exit 1
    Command failed
    

  8. ($^) :: FilePath -> [Text] -> IO ()

    shellmet Shellmet

    This operator runs shell command with given options but doesn't print the command itself.

    >>> "echo" $^ ["Foo", "Bar"]
    Foo Bar
    

  9. ($|) :: FilePath -> [Text] -> IO Text

    shellmet Shellmet

    Run shell command with given options and return stripped stdout of the executed command.

    >>> "echo" $| ["Foo", "Bar"]
    "Foo Bar"
    

  10. ($.//) :: Cursor node -> (Cursor node -> [a]) -> [a]

    xml-indexed-cursor Text.XML.Cursor.Indexed

    Apply an axis to a 'Cursor node' as well as its descendants.

Page 27 of many | Previous | Next