| Declare-Constraints-Simple documentation | Contained in the Declare-Constraints-Simple distribution. |
Declare::Constraints::Simple::Library - Constraint Library Bundle
This module functions as bundle of all default libraries, and as map and/or reference of said ones.
General constraints and constraint-like elements that affect the whole framework.
Provides: Message, Scope, SetResult, IsValid, ReturnTrue,
ReturnFalse
Constraints for scalar value validation.
Provides: Matches, IsDefined, HasLength, IsOneOf, IsTrue,
IsEq
These validate values by their numerical properties.
Provides: IsNumber, IsInt
For validation of values in an object oriented manner.
Provides: IsA, IsClass, IsObject, HasMethods
These can validate properties by their reference types.
Provides: IsRefType, IsScalarRef, IsArrayRef, IsHashRef,
IsCodeRef, IsRegex
These constraints deal with array references and their contents.
Provides: HasArraySize, OnArrayElements, OnEvenElements,
OnOddElements
All constraints appliable to hash references as well as their keys and values.
Provides: HasAllKeys, OnHashKeys
Operators can be used in any place a constraint can be used, as their implementations are similar.
Provides: And, Or, XOr, Not, CaseValid
Robert 'phaylon' Sedlacek <phaylon@dunkelheit.at>
This module is free software, you can redistribute it and/or modify it under the same terms as perl itself.
| Declare-Constraints-Simple documentation | Contained in the Declare-Constraints-Simple distribution. |
package Declare::Constraints::Simple::Library; use warnings; use strict; use base qw( Declare::Constraints::Simple::Library::General Declare::Constraints::Simple::Library::Scalar Declare::Constraints::Simple::Library::Numerical Declare::Constraints::Simple::Library::OO Declare::Constraints::Simple::Library::Referencial Declare::Constraints::Simple::Library::Hash Declare::Constraints::Simple::Library::Array Declare::Constraints::Simple::Library::Operators );
1;