Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
boolOption :: Mod OptionFields Bool -> Parser Boolconfiguration-tools Configuration.Utils.CommandLine The boolOption is an alternative to switch. Using switch with command line parsers that overwrite settings from a configuration file is problematic: the absence of the switch is interpreted as setting the respective configuration value to False. So there is no way to specify on the command line that the value from the configuration file shall be used. Some command line UIs use two different options for those values, for instance --enable-feature and --disable-feature. This option instead expects a Boolean value. Beside that it behaves like any other option.
boolOption_ :: Mod FlagFields Bool -> Parser Boolconfiguration-tools Configuration.Utils.CommandLine An alternative syntax for boolOption for options with long names. Instead of taking a boolean argument the presence of the option acts as a switch to set the respective configuration setting to True. If the option is not present the setting is left unchanged. In addition for long option names a respective unset flag is provided. For instance for a flag --verbose there will also be a flag --no-verbose. This can still be used with short option names only, but no unset flag would be provided.
boolReader :: (Eq a, Show a, FoldCase a, IsString a, IsString e, Monoid e) => a -> Either e Boolconfiguration-tools Configuration.Utils.CommandLine No documentation available.
-
data-prometheus Data.Prometheus.Monad Convert Bool to Gauge, 0 meaning False
boolFlag :: Name -> Description -> FlagsParser Boolflags-applicative Flags.Applicative Returns a parser with the given name and description for a flag with no value, returning whether the flag was present.
-
generic-case Generics.Case Same as bool, except the Bool comes before the case functions. Equivalent type signature:
boolL :: forall r. Analysis Bool r
The implementation is just:boolL = gcase
-
generic-case Generics.Case bool, implemented using gcaseR. Equivalent type signature:
boolR :: forall r. AnalysisR Bool r
The implementation is just:boolR = gcaseR @Bool
boolector :: GrisetteSMTConfiggrisette Grisette.Backend Solver configuration for Boolector. https://boolector.github.io/
boolector :: GrisetteSMTConfiggrisette Grisette.Internal.Backend.Solving Solver configuration for Boolector. https://boolector.github.io/
boolField :: String -> (Item a -> Bool) -> Context ahakyll Hakyll.Web.Template.Context Creates a field to use with the $if()$ template macro. Attempting to substitute the field into the template will cause an error.