NAME
BERT::Tuple - Tuple data type for BERT
SYNOPSIS
use BERT;
my $tuple = BERT::Tuple->new(['foo', 'bar', 'baz']);
my $arrayref = $tuple->value;
DESCRIPTION
This module is intended to be used with BERT to specify a tuple value.
See the BERT specification at http://bert-rpc.org/.
METHODS
- $tuple = BERT::Tuple->new($arrayref)
-
Creates a new BERT::Tuple object initialized with $arrayref as its tuple value.
- $arrayref = $tuple->value
-
Returns all of the arguments that were passed to
new()
as-is.
AUTHOR
Sherwin Daganato <sherwin@daganato.com>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.