Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

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

  1. _cloudTrailTrailEnableLogFileValidation :: CloudTrailTrail -> Maybe (Val Bool)

    stratosphere Stratosphere.Resources.CloudTrailTrail

    No documentation available.

  2. cttEnableLogFileValidation :: Lens' CloudTrailTrail (Maybe (Val Bool))

    stratosphere Stratosphere.Resources.CloudTrailTrail

    http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html#cfn-cloudtrail-trail-enablelogfilevalidation

  3. _cognitoUserPoolUserValidationData :: CognitoUserPoolUser -> Maybe [CognitoUserPoolUserAttributeType]

    stratosphere Stratosphere.Resources.CognitoUserPoolUser

    No documentation available.

  4. cupuValidationData :: Lens' CognitoUserPoolUser (Maybe [CognitoUserPoolUserAttributeType])

    stratosphere Stratosphere.Resources.CognitoUserPoolUser

    http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-validationdata

  5. decodeValidation :: TomlCodec a -> Text -> Validation [TomlDecodeError] a

    tomland Toml.Codec.Code

    Convert textual representation of TOML into user data type by the provided codec.

  6. partitionValidations :: [Validation e a] -> ([e], [a])

    valida Valida

    Partitions a list of Either into two lists. All the Left elements are extracted, in order, to the first component of the output. Similarly the Right elements are extracted to the second component of the output.

    partitionValidations xs = (failures xs, successes xs)
    

    Examples

    >>> partitionValidations [Success 1, Failure "err1", Failure "err2", Success 2, Failure "err3"]
    (["err1","err2","err3"],[1,2])
    

  7. partitionValidations :: [Validation e a] -> ([e], [a])

    valida-base Valida

    Partitions a list of Either into two lists. All the Left elements are extracted, in order, to the first component of the output. Similarly the Right elements are extracted to the second component of the output.

    partitionValidations xs = (failures xs, successes xs)
    

    Examples

    >>> partitionValidations [Success 1, Failure "err1", Failure "err2", Success 2, Failure "err3"]
    (["err1","err2","err3"],[1,2])
    

  8. type TransValidationRule e a b = TransValidationRuleT e Identity a b

    validate-input Data.Validator

    A transforming validation rule. Combine using (>=>) or (<=<)

  9. type TransValidationRuleT e (m :: Type -> Type) a b = a -> ValidationT e m b

    validate-input Data.Validator

    A transforming validation rule. Combine using (>=>) or (<=<)

  10. _Validation :: Validate f => Iso (f e a) (f g b) (Validation e a) (Validation g b)

    validation Data.Validation

    No documentation available.

Page 32 of many | Previous | Next