The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SPVM::NDArray::Long - N-Dimension Array of long

SYNOPSYS

  my $ndarray = SPVM::NDArray::Long->new;
  my $dim1 = 3;
  my $dim2 = 4;
  my $length = $dim1 * $dim2;
  $ndarray->{base} = new long[$length];
  $ndarray->{length} = $length;
  $ndarray->{shape} = [$dim1, $dim2];

DESCRIPTION

SPVM::NDArray::Long is N-Dimension Array of long.

See SPVM::NDArrayDoc about Details of N-Dimension Array.