| ELF-Extract-Sections documentation | Contained in the ELF-Extract-Sections distribution. |
ELF::Extract::Sections::Meta::Types - Generic Type Constraints for E:E:S
version 0.02071411
ENUM: name, offset, size
An object that is a ELF::Extract::Sections::Section
Kent Fredric <kentnl@cpan.org>
This software is copyright (c) 2011 by Kent Fredric.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| ELF-Extract-Sections documentation | Contained in the ELF-Extract-Sections distribution. |
use strict; use warnings; package ELF::Extract::Sections::Meta::Types; BEGIN { $ELF::Extract::Sections::Meta::Types::VERSION = '0.02071411'; } # ABSTRACT: Generic Type Constraints for E:E:S # $Id:$ use MooseX::Types::Moose (':all'); use MooseX::Types -declare => [ 'FilterField', 'ElfSection' ]; subtype FilterField, as enum( [ 'name', 'offset', 'size', ] ); subtype ElfSection, as Object, where { $_->isa('ELF::Extract::Sections::Section') }; 1;
__END__