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

NAME

SPVM::Complex_2d - Complex_2d in SPVM | double complex type

SYNOPSYS

  my $z : Complex_2d;
  $z->{re} = 1;
  $z->{im} = 2;
  

DESCRIPTION

Complex_2d is double complex type.

This module is multi numeric type.

  class Complex_2d : mulnum_t {
    has re : double;
    has im : double;
  }

FIELDS

re

  has re : double;

Real number.

im

  has im : double;

Imaginary number.