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.
-
base-unicode-symbols Data.List.Unicode Epsilon, the empty word (or list) (ε) = [] (U+3B5, GREEK SMALL LETTER EPSILON)
-
base-unicode-symbols Data.String.Unicode Epsilon, the empty word (or list) (ε) = [] (U+3B5, GREEK SMALL LETTER EPSILON)
-
base-unicode-symbols Prelude.Unicode Epsilon, the empty word (or list) (ε) = [] (U+3B5, GREEK SMALL LETTER EPSILON)
look :: forall w (sig :: (Type -> Type) -> Type -> Type) m . Has (Accum w) sig m => m wfused-effects Control.Effect.Accum Look up the previous accumulation
runAccum w look = return (w, w) runAccum w (look >>= continuation) = runAccum w (continuation w)
cutfail :: forall (sig :: (Type -> Type) -> Type -> Type) m a . Has Cut sig m => m afused-effects Control.Effect.Cut Fail the current branch, and prevent backtracking within the nearest enclosing call (if any). Contrast with empty, which fails the current branch but allows backtracking.
cutfail >>= k = cutfail
cutfail <|> m = cutfail
empty :: forall (sig :: (Type -> Type) -> Type -> Type) m a . Has Empty sig m => m afused-effects Control.Effect.Empty Abort the computation. empty annihilates >>=:
empty >>= k = empty
ask :: forall r (sig :: (Type -> Type) -> Type -> Type) m . Has (Reader r) sig m => m rfused-effects Control.Effect.Reader Retrieve the environment value.
runReader a (ask >>= k) = runReader a (k a)
get :: forall s (sig :: (Type -> Type) -> Type -> Type) m . Has (State s) sig m => m sfused-effects Control.Effect.State Get the current state value.
runState a (get >>= k) = runState a (k a)
exitFailure :: MonadIO m => m ario RIO Lifted version of "System.Exit.exitFailure". @since 0.1.9.0.
exitSuccess :: MonadIO m => m ario RIO Lifted version of "System.Exit.exitSuccess". @since 0.1.9.0.
Page 1 of many | Next