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

NAME

SPVM::Complex_2f - Complex_2f in SPVM | 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.