"Tangence::Meta::Struct"
structure representing one "Tangence" structure type
- Provided by: libtangence-perl (Version: 0.33-1)
- Report a bug
structure representing one "Tangence" structure type
This data structure stores information about one Tangence structure type. Once constructed and defined, such objects are immutable.
$struct = Tangence::Meta::Struct->new( name => $name )
Returns a new instance representing the given name.
$struct->define( %args )
Provides a definition for the structure.
$defined = $struct->defined
Returns true if a definition of the structure has been provided using "define".
$name = $struct->name
Returns the name of the structure
@fields = $struct->fields
Returns a list of the fields defined on the structure, in their order of definition.
Paul Evans <leonerd@leonerd.org.uk>