File: Structured.pm

package info (click to toggle)
libmoosex-types-structured-perl 0.36-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 492 kB
  • sloc: perl: 757; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ## Hide from PAUSE
 MooseX::Meta::TypeCoercion::Structured;

our $VERSION = '0.36';

use Moose;
extends 'Moose::Meta::TypeCoercion';

# We need to make sure we can properly coerce the structure elements inside a
# structured type constraint.  However requirements for the best way to allow
# this are still in flux.  For now this class is a placeholder.
# see also Moose::Meta::TypeCoercion.

no Moose;
__PACKAGE__->meta->make_immutable(inline_constructor => 0);