Data::Validate::Structure is a Perl module used to handle a structure in custom ways.
SYNOPSIS
use Data::Validate::Structure;
my $structure = Structure->new( $data );
# Check sub structures matches exactly
$structure == $structure2
# Check sub structures matches equaly (array order not important)
$structure eq $structure
# Check structure contains all of structure2 at least
$structure >= $structure2
# Check structure2 contains all of structure at least
$structure $structure2
# structure2 must contain structure but not equal it
$structure < $structure2
# Make sure structure does not exactly match structure2
$structure != $structure2
# Remove all parts of structure2 from structure
$structure - $structure2
$structure -= $structure2
# Merge two structures together
$structure + $structure2
$structure += $structure2
Requirements:
· Perl
Product's homepage
Requirements:
· Perl