YAML
Class Inheritance
- YAML
| Package | YAML | |||||
|---|---|---|---|---|---|---|
| Version | 0.84 | |||||
| File | 24868 bytes, 815 lines | |||||
| Contains POD | 705 Lines | |||||
| Modules | 5 | Exporter | YAML::Mo | |||
| YAML::Node | constant | |||||
| Object Methods | init_action_object | |||||
| General Subroutines | Bless | Blessed | Dump | |||
| DumpFile | Load | LoadFile | ||||
| global_object | ||||||
| Package Variables | $VERSION | @EXPORT | @EXPORT_OK | |||
Note: This API is just a guess on the meaning of the subroutines in the file.
Class Methods are assumed be in one of the following forms:
or
sub class_method {
my $class = shift;
...
}
or
sub class_method {
my $caller = shift;
...
}
Object Methods are assumed to be in one of the following forms:
or
or
or
sub object_method {
my $self = shift;
...
}
or
sub object_method {
my $this = shift;
...
}
or
sub object_method {
my ( $self, ... ) = @_;
...
}
or
sub object_method {
my ( $this, ... ) = @_;
...
}