The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# * Rserve client for Perl
# * @author Djun Kim
# * Based on Clément Turbelin's PHP client
# * Licensed under GPL v2 or at your option v3

# * Supports Rserve protocol 0103 only (used by Rserve 0.5 and higher)
# *
# * Developed using code from Simple Rserve client for PHP by Simon
# * Urbanek Licensed under GPL v2 or at your option v3

# * This code is inspired from Java client for Rserve (Rserve package
# * v0.6.2) developed by Simon Urbanek(c)

#use warnings;
#use autodie;

# R Null value

use Statistics::RserveClient;
use Statistics::RserveClient qw (:xt_types );

use Statistics::RserveClient::REXP;

# class Rserve_REXP_Null extends Rserve_REXP {
package Statistics::RserveClient::REXP::Null;

our @ISA = qw(Statistics::RserveClient::REXP);

sub isList() { return Statistics::RserveClient::TRUE; }
sub isNull() { return Statistics::RserveClient::TRUE; }

sub getType() {
    return Statistics::RserveClient::XT_NULL;
}

1;