Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. pattern BooleanCondition_Type_TEXTNOTEQ :: BooleanCondition_Type

    gogol-sheets Gogol.Sheets

    The cell's value must be exactly not the condition's value. Supported by filters on data source objects. Requires at least one ConditionValue.

  2. pattern BooleanCondition_Type_TEXTSTARTSWITH :: BooleanCondition_Type

    gogol-sheets Gogol.Sheets

    The cell's value must start with the condition's value. Supported by conditional formatting and filters. Requires a single ConditionValue.

  3. data BooleanRule

    gogol-sheets Gogol.Sheets

    A rule that may or may not match, depending on the condition. See: newBooleanRule smart constructor.

  4. BooleanRule :: Maybe BooleanCondition -> Maybe CellFormat -> BooleanRule

    gogol-sheets Gogol.Sheets

    No documentation available.

  5. data BooleanCondition

    gogol-sheets Gogol.Sheets.Types

    A condition that can evaluate to true or false. BooleanConditions are used by conditional formatting, data validation, and the criteria in filters. See: newBooleanCondition smart constructor.

  6. BooleanCondition :: Maybe BooleanCondition_Type -> Maybe [ConditionValue] -> BooleanCondition

    gogol-sheets Gogol.Sheets.Types

    No documentation available.

  7. newtype BooleanCondition_Type

    gogol-sheets Gogol.Sheets.Types

    The type of condition.

  8. BooleanCondition_Type :: Text -> BooleanCondition_Type

    gogol-sheets Gogol.Sheets.Types

    No documentation available.

  9. pattern BooleanCondition_Type_Blank :: BooleanCondition_Type

    gogol-sheets Gogol.Sheets.Types

    The cell's value must be empty. Supported by conditional formatting and filters. Requires no ConditionValues.

  10. pattern BooleanCondition_Type_Boolean :: BooleanCondition_Type

    gogol-sheets Gogol.Sheets.Types

    The cell's value must be TRUE/FALSE or in the list of condition values. Supported by data validation. Renders as a cell checkbox. Supports zero, one or two ConditionValues. No values indicates the cell must be TRUE or FALSE, where TRUE renders as checked and FALSE renders as unchecked. One value indicates the cell will render as checked when it contains that value and unchecked when it is blank. Two values indicate that the cell will render as checked when it contains the first value and unchecked when it contains the second value. For example, ["Yes","No"] indicates that the cell will render a checked box when it has the value "Yes" and an unchecked box when it has the value "No".

Page 41 of many | Previous | Next