Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. boolValue :: ExtendedValue -> Maybe Bool

    gogol-sheets Gogol.Sheets.Types

    Represents a boolean value.

  2. booleanRule :: ConditionalFormatRule -> Maybe BooleanRule

    gogol-sheets Gogol.Sheets.Types

    The formatting is either "on" or "off" according to the rule.

  3. boolValue :: CloudExportAdditionalProperties -> Maybe Bool

    gogol-shopping-content Gogol.ShoppingContent

    Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.

  4. boolValue :: CloudExportAdditionalProperties -> Maybe Bool

    gogol-shopping-content Gogol.ShoppingContent.Types

    Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.

  5. boolDefaultFalseFrom :: PHPSessionValue -> Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    Returns the value of a boolean value as a Bool, or returns False as the default Bool value if the PHPSessionValue is not a boolean type. This function is similar to the "strict comparison" operator against the boolean TRUE value.

  6. boolDefaultTrueFrom :: PHPSessionValue -> Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    Returns the value of a boolean value as a Bool, or returns True as the default Bool value if the PHPSessionValue is not a boolean type.

  7. boolFromESBooleanCoercionRules :: PHPSessionValue -> Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    Alternative boolean coercion based on the JS/ES boolean conversion rules. A particular distinction of the coercion behaviour of this function compared to the behaviour of other functions is that floating point NaN returns False instead of True. Values that return False are NAN, 0, the empty string "", NULL and FALSE PHP objects, arrays and objects implementing Serializable always return True. JS/ES's boolean conversion is described in section 9.2 of the ECMA 262 standard.

  8. boolFromLuaBooleanCoercionRules :: PHPSessionValue -> Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    Alternative boolean coercion based on Lua rules, all values are True except NULL and FALSE. For Lua's conversion rules, refer to the passage in section 2.4.4 "Control Structures" of Lua 5.1's Manual. http://www.lua.org/manual/5.1/manual.html

  9. boolFromPHPLooseComparisonWithTrue :: PHPSessionValue -> Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    Coerces a PHPSessionValue to a Bool based on PHP's conversion rules to convert arbitrary values to boolean for evaluation. This function's behaviour is also reminiscent of PHP's "loose comparison" operator against boolean TRUE. http://php.net/manual/language.types.boolean.php Values that result in True are TRUE, non-zero numbers, non-empty strings other than "0", objects, and non-empty arrays. A conversion documented in the PHP manual involving SimpleXML objects that coerce to FALSE instead of TRUE when created with empty tags is not implemented by this function, as SimpleXML objects cannot be serialized directly and so don't have a valid serializable form to convert from in any case. Because of the range of valid values of the "loose comparison" operator, this function and variations based on other dynamically typed languages is provided mainly for circumstances where they may be the best fit to map particular data values to a boolean truth value system. boolFromReducedLooseCoercionSafe provides a significantly reduced subset of valid values to coerce from for the purpose of determining a "confirmation" value, as opposed to simply determining if a value exists or not.

  10. boolFromPHPLooseComparisonWithTrueNullable :: PHPSessionValue -> Maybe Bool

    hs-php-session Data.PHPSession.ImplicitConv.ConvBool

    A version of boolFromPHPLooseComparisonWithTrue where NULL returns Nothing and all other inputs returns Just with the boolean result.

Page 68 of many | Previous | Next