YAML::Tag - Tag URI object class for YAML


YAML documentation Contained in the YAML distribution.

Index


Code Index:

NAME

Top

YAML::Tag - Tag URI object class for YAML

SYNOPSIS

Top

    use YAML::Tag;

DESCRIPTION

Top

Used by YAML::Node.

AUTHOR

Top

Ingy döt Net <ingy@cpan.org>

COPYRIGHT

Top


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__