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.

  1. boolQueryShouldMatch :: BoolQuery -> [Query]

    bloodhound Database.Bloodhound.Common.Types

    No documentation available.

  2. boolChar :: Char -> Bool -> Char

    board-games Game.Labyrinth

    No documentation available.

  3. boolFlags :: Bool -> String -> String -> Mod FlagFields Bool -> Parser Bool

    calligraphy Calligraphy.Util.Optparse

    Enable/disable flags for a Bool.

  4. 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
    

  5. boolToBit :: Bool -> Bit

    clash-prelude Clash.Class.BitPack

    Convert a Bool to a Bit

  6. 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
    

  7. boolToBit :: Bool -> Bit

    clash-prelude Clash.Class.BitPack.Internal

    Convert a Bool to a Bit

  8. boolOption :: Mod OptionFields Bool -> Parser Bool

    configuration-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.

  9. boolOption_ :: Mod FlagFields Bool -> Parser Bool

    configuration-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.

  10. boolReader :: (Eq a, Show a, FoldCase a, IsString a, IsString e, Monoid e) => a -> Either e Bool

    configuration-tools Configuration.Utils.CommandLine

    No documentation available.

Page 60 of many | Previous | Next