NAME

SPVM::Complex_2f - float complex type

SYNOPSYS

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

DESCRIPTION

Complex_2f is float complex type.

This module is multi numeric type.

class Complex_2f : mulnum_t {
  has re : float;
  has im : float;
}

FIELDS

re

has re : float;

Real number.

im

has im : float;

Imaginary number.