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. data ObjectsValidationMode

    hpqtypes-extras Database.PostgreSQL.PQTypes.ExtrasOptions

    No documentation available.

  2. eoObjectsValidationMode :: ExtrasOptions -> !ObjectsValidationMode

    hpqtypes-extras Database.PostgreSQL.PQTypes.ExtrasOptions

    Validation mode for unknown tables and composite types.

  3. jwtSettingsToJwtValidationSettings :: JWTSettings -> JWTValidationSettings

    servant-auth-server Servant.Auth.Server.Internal.ConfigTypes

    No documentation available.

  4. eitherToValidation :: Either e a -> Validation e a

    validation-selective Validation

    Transform an Either into a Validation.

    >>> eitherToValidation (Right "whoop")
    Success "whoop"
    
    >>> eitherToValidation (Left "nahh")
    Failure "nahh"
    

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

    validation-selective Validation

    Redistributes the given list of Validations into two lists of es and es, where the first list contains all values of Failures and the second one — Successes correspondingly. Note that the order is preserved.

    >>> partitionValidations [Failure "Hello", Success 1, Failure "world", Success 2, Failure "!" ]
    (["Hello","world","!"],[1,2])
    

  6. module Deal.DealValidation

    No documentation available.

  7. data SNSNotificationValidationError

    aws-sns-verify Amazon.SNS.Verify

    No documentation available.

  8. data SNSNotificationValidationError

    aws-sns-verify Amazon.SNS.Verify.Validate

    No documentation available.

  9. type ConfigValidation a (f :: Type -> Type) = ConfigValidation' a f ()

    configuration-tools Configuration.Utils

    A validation function. The type in the MonadWriter is excpected to be a Foldable structure for collecting warnings.

  10. newtype ConfigValidationFunction a (f :: Type -> Type) r

    configuration-tools Configuration.Utils

    A newtype wrapper around a validation function. The only purpose of this type is to avoid ImpredicativeTypes when storing the function in the ProgramInfoValidate record.

Page 22 of many | Previous | Next