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.
boolValue :: ExtendedValue -> Maybe Boolgogol-sheets Gogol.Sheets.Types Represents a boolean value.
booleanRule :: ConditionalFormatRule -> Maybe BooleanRulegogol-sheets Gogol.Sheets.Types The formatting is either "on" or "off" according to the rule.
boolValue :: CloudExportAdditionalProperties -> Maybe Boolgogol-shopping-content Gogol.ShoppingContent Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.
boolValue :: CloudExportAdditionalProperties -> Maybe Boolgogol-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.
boolDefaultFalseFrom :: PHPSessionValue -> Boolhs-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.
boolDefaultTrueFrom :: PHPSessionValue -> Boolhs-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.
boolFromESBooleanCoercionRules :: PHPSessionValue -> Boolhs-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.
boolFromLuaBooleanCoercionRules :: PHPSessionValue -> Boolhs-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
boolFromPHPLooseComparisonWithTrue :: PHPSessionValue -> Boolhs-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.
boolFromPHPLooseComparisonWithTrueNullable :: PHPSessionValue -> Maybe Boolhs-php-session Data.PHPSession.ImplicitConv.ConvBool A version of boolFromPHPLooseComparisonWithTrue where NULL returns Nothing and all other inputs returns Just with the boolean result.