Hoogle Search
Within LTS Haskell 24.26 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
boolQueryShouldMatch :: BoolQuery -> [Query]bloodhound Database.Bloodhound.Common.Types No documentation available.
boolChar :: Char -> Bool -> Charboard-games Game.Labyrinth No documentation available.
boolFlags :: Bool -> String -> String -> Mod FlagFields Bool -> Parser Boolcalligraphy Calligraphy.Util.Optparse Enable/disable flags for a Bool.
boolToBV :: forall (n :: Nat) . KnownNat n => Bool -> BitVector (n + 1)clash-prelude Clash.Class.BitPack Zero-extend a Boolean value to a BitVector of the appropriate size.
>>> boolToBV True :: BitVector 6 0b00_0001 >>> boolToBV False :: BitVector 6 0b00_0000
-
clash-prelude Clash.Class.BitPack Convert a Bool to a Bit
boolToBV :: forall (n :: Nat) . KnownNat n => Bool -> BitVector (n + 1)clash-prelude Clash.Class.BitPack.Internal Zero-extend a Boolean value to a BitVector of the appropriate size.
>>> boolToBV True :: BitVector 6 0b00_0001 >>> boolToBV False :: BitVector 6 0b00_0000
-
clash-prelude Clash.Class.BitPack.Internal Convert a Bool to a Bit
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.