| Protocol-XMLRPC documentation | view source | Contained in the Protocol-XMLRPC distribution. |
Protocol::XMLRPC::Value::Double - XML-RPC array
my $double = Protocol::XMLRPC::Value::Double->new(1.12);
XML-RPC double
newCreates new Protocol::XMLRPC::Value::Double instance.
typeReturns 'double'.
value my $double = Protocol::XMLRPC::Value::Double->new(1.2);
# $double->value returns 1.2
Returns serialized Perl5 scalar.
to_string my $double = Protocol::XMLRPC::Value::Double->new(1.2);
# $double->to_string is now '<double>1.2</double>'
XML-RPC double string representation.
Viacheslav Tykhanovskyi, vti@cpan.org.
Copyright (C) 2009, Viacheslav Tykhanovskyi.
This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.
| Protocol-XMLRPC documentation | view source | Contained in the Protocol-XMLRPC distribution. |