| YAML documentation | Contained in the YAML distribution. |
YAML::Tag - Tag URI object class for YAML
use YAML::Tag;
Used by YAML::Node.
Ingy döt Net <ingy@cpan.org>
Copyright (c) 2006. Ingy döt Net. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| YAML documentation | Contained in the YAML distribution. |
package YAML::Tag; use strict; use warnings; our $VERSION = '0.72'; use overload '""' => sub { ${$_[0]} }; sub new { my ($class, $self) = @_; bless \$self, $class } sub short { ${$_[0]} } sub canonical { ${$_[0]} } 1; __END__