Maintainer | Toshio Ito <debug.ito@gmail.com> |
---|---|
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
WildBind.Exec
Description
Functions to build executable action
wildBind' :: Ord i => Option s i -> Binding s i -> FrontEnd s i -> IO () Source #
Build the executable with Option
.
Option for executable
Accessor functions for Option
optBindingHook :: Option s i -> [(i, ActionDescription)] -> IO () Source #
An action executed when current binding may be changed. Default: do nothing.
optCatch :: Option s i -> s -> i -> SomeException -> IO () Source #
the handler for exceptions thrown from bound
actions. Default: just print the SomeException
to
stderr
and ignore it.