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.
-
hpqtypes-extras Database.PostgreSQL.PQTypes.ExtrasOptions No documentation available.
eoObjectsValidationMode :: ExtrasOptions -> !ObjectsValidationModehpqtypes-extras Database.PostgreSQL.PQTypes.ExtrasOptions Validation mode for unknown tables and composite types.
jwtSettingsToJwtValidationSettings :: JWTSettings -> JWTValidationSettingsservant-auth-server Servant.Auth.Server.Internal.ConfigTypes No documentation available.
eitherToValidation :: Either e a -> Validation e avalidation-selective Validation Transform an Either into a Validation.
>>> eitherToValidation (Right "whoop") Success "whoop"
>>> eitherToValidation (Left "nahh") Failure "nahh"
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])
-
No documentation available.
data
SNSNotificationValidationError aws-sns-verify Amazon.SNS.Verify No documentation available.
data
SNSNotificationValidationError aws-sns-verify Amazon.SNS.Verify.Validate No documentation available.
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.
newtype
ConfigValidationFunction a (f :: Type -> Type) rconfiguration-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.