C<env> must be a L<SPVM::Bulder::Env> or L<SPVM::BlessedObject::Class> object of L<Native::Env|SPVM::Native::Env> class.
=item C<stack>
An call stack.
C<stack> must be a L<SPVM::Bulder::Stack> or L<SPVM::BlessedObject::Class> object of L<Native::Stack|SPVM::Native::Stack> class.
=back
=head2 new_string
my$spvm_string= $api->new_string($string);
Converts the Perl scalar$stringto an SPVM string using perlapi L<SvPV|https://perldoc.perl.org/perlapi#SvPV>, and returns the object that converts it to a L<SPVM::BlessedObject::String> object.
If $stringis undef, returns undef.
If $stringis a L<SPVM::BlessedObject::String> object, returns itself.
Exceptions:
$stringmust be a non-reference scalaror an SPVM::BlessedObject::String object or undef. Otherwise an exception is thrown.
Examples:
my$spvm_string= $api->new_string("abc");
my$spvm_string= $api->new_string("あいう");
=head2 new_byte_array
my$spvm_array= $api->new_byte_array($array);
Converts the Perl array reference $arrayto an SPVM byte array, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Each element is converted by the conversion of L</"byte Type Argument">.
If $arrayis undef, returns undef.
If $arrayis a L<SPVM::BlessedObject::Array> object, returns itself.
Exceptions:
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be the byte[] type. Otherwise an exception is thrown.
The same as L</"new_byte_array"> method, but eachelement is converted by L<SvUV|https://perldoc.perl.org/perlapi#SvUV> perlapi and a type cast to C<uint8_t> in the C language.
(int8_t)(uint8_t)SvUV(perl_scalar);
=head2 new_byte_array_len
my$spvm_array= $api->new_byte_array_len($length);
Creates an SPVM byte array withthe length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Exceptions:
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
The same as L</"new_short_array"> method, but eachelement is converted by L<SvUV|https://perldoc.perl.org/perlapi#SvUV> perlapi and a type cast to C<uint16_t> in the C language.
The same as L</"new_int_array"> method, but eachelement is converted by L<SvUV|https://perldoc.perl.org/perlapi#SvUV> perlapi and a type cast to C<uint32_t> in the C language.
(int32_t)(uint32_t)SvUV(perl_scalar);
=head2 new_int_array_len
my$spvm_array= $api->new_int_array_len($length);
Creates an SPVM intarray withthe length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Exceptions:
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
Converts the Perl array reference $arrayto an SPVM long array, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object. Each element is converted by the conversion of L</"long Type Argument">.
If $arrayis undef, returns undef.
Exceptions:
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be the long[] type. Otherwise an exception is thrown.
The same as L</"new_long_array"> method, but eachelement is converted by L<SvUV|https://perldoc.perl.org/perlapi#SvUV> perlapi and a type cast to C<uint64_t> in the C language.
(int64_t)(uint64_t)SvUV(perl_scalar);
=head2 new_long_array_len
my$spvm_array= $api->new_long_array_len($length);
Creates an SPVM long array withthe length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Exceptions:
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
Converts the Perl array reference $arrayto an SPVM string array, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object. Each element is converted by L</"new_string"> method.
If $arrayis undef, returns undef.
If $arrayis a L<SPVM::BlessedObject::Array> object, returns itself.
Exceptions:
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be the string[] type. Otherwise an exception is thrown.
Converts the Perl array reference $arrayto a value of the SPVM object array(1-dimensional) type $type_name, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object of $type_nametype.
If $arrayis undef, it is converted to SPVM undef.
If $arrayis a L<SPVM::BlessedObject::Array> object, returns itself.
Exceptions:
If the type name $type_namewas parsed, but the class name could not be extracted, an exception is thrown.
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of the type $type_namemust be 1. Otherwise an exception is thrown.
$type_namemust be an object array type. Otherwise an exception is thrown.
Creates an SPVM object array(1-dimensional) withthe type name $type_nameand the length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object of $type_nametype.
Exceptions:
If the type name $type_namewas parsed, but the class name could not be extracted, an exception is thrown.
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of the type $type_namemust be 1. Otherwise an exception is thrown.
$type_namemust be an object array type. Otherwise an exception is thrown.
Converts the Perl hash reference $optionsto a value of the SPVM C<object[]> type, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Each key of $optionsis converted to a L<SPVM::BlessedObject::String> object using L</"new_string"> method.
Exceptions:
The value of $optionsmust be a L<SPVM::BlessedObject> object. Otherwise an exception is thrown.
$optionsmust be a hash reference. Otherwise an exception is thrown.
Converts the Perl array reference of a hash references $arrayto the SPVM multi-numeric array type $type_name, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
Each value of the hash reference is coverted by the conversion of L</"byte Type Argument">, L</"short Type Argument">, L</"int Type Argument">, L</"long Type Argument">, L</"float Type Argument">, L</"double Type Argument"> corresponding to the numeric type of the the element of $type.
Exceptions:
If the type name $type_namewas parsed, but the class name could not be extracted, an exception is thrown.
All fields of the element type of $type_namemust be defined. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of the type $type_namemust be 1. Otherwise an exception is thrown.
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable. Otherwise an exception is thrown.
Creates an SPVM object array withthe type name $type_nameand the length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object of $type_name.
Exceptions:
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of $type_namemust be 1. Otherwise an exception is thrown.
Converts the binary data $binaryto an SPVM multi-numeric array type $type_name, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
$binaryis copied to an SPVM multi-numeric array by the C<memcpy> function in the C laugnage. The lengthof the array is calcurated from $binary.
Exceptions:
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of the type $type_namemust be 1. Otherwise an exception is thrown.
$binarymust be an array reference. Otherwise an exception is thrown.
The lengthof $binarymust be divisible by the lengthof fields * the byte size of the element type. Otherwise an exception is thrown.
Converts the Perl array reference $arrayto a value of the SPVM multi-dimensional array type $type_name, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object.
If $arrayis undef, it is converted to SPVM undef.
If $arrayis a L<SPVM::BlessedObject::Array> object, returns itself.
Exceptions:
If $arrayis a reference other than the array reference, an exception is thrown.
$array: If it is a reference, it must be an array reference. Otherwise an exception is thrown.
$array: If it is an SPVM::BlessedObject::Array object, the type must be assignable. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of $type_namemust be greater than or equal to 2 and less than or equal to 255. Otherwise an exception is thrown.
The assignability of the element to the element type of $type_nameis checked. If it is not assignable, an exception is thrown.
Creates an SPVM multi-dimensional array withthe type name $type_nameand the length$length, and returns the object that converts it to a L<SPVM::BlessedObject::Array> object of $type_name.
Exceptions:
$lengthmust be greater than or equal to 0. Otherwise an exception is thrown.
If the bacic type of the type $type_nameis not found, an exception is thrown.
The dimension of $type_namemust be greater than or equal to 2 and less than or equal to 255. Otherwise an exception is thrown.
Calls a class method or an instance method. If the invocant $invocantis a string, a class method is called. If the invocant $invocantis a L<SPVM::BlessedObject::Class>, an instance method is called.
Each of the arguments @argsare converted by the rule of L</"Argument Conversion">.
The method name $method_nameallows a static method name such as C<Foo::bar>.
The returnvalue is converted by the rule of L</"Return Value Conversion">.
If a L<SPVM::ExchangeAPI::Error> object is passed to the lastof the arguments, and ifan exception is thrown from an SPVM method, the error code is set to the C<code> field of the object.
Exceptions:
If $invocantis an SPVM::BlessedObject, $invocantmust be an SPVM::BlessedObject::Class object. Otherwise an exception is thrown.
The static method call must be valid. Otherwise an exception is thrown.
If the M method in the C class is not found, an exception is thrown.
If too few arguments are passed to the M method in the C class, an exception is thrown.
If too many arguments are passed to the M method in the C class, an exception is thrown.
If L<argument conversion|/"Argument Conversion"> fails, an exception is thrown.
If the calling method throws an exception, the exception is thrown.
Examples:
# Class method call
my$obj_int= $api->call_method("Int", "new", 1);
# Instance method call
$api->call_method($obj_int, "set_value", 5);
my$value= $api->call_method($obj_int, "value");
# Call static instance method
$api->call_method($object, "Foo::value");
Easy Ways:
Calling class methods can be made easier using L<SPVM class loading|SPVM/"Loading Class"> feature.
Instance method calls can be made easier using L<SPVM::BlessedObject::Class>.
my$value= $int_object->value;
=head1 Argument Conversion
Each argument passed to L</"call_method"> method are converted to an SPVM value according to the SPVM type beforeit passed to an SPVM method.
=head2 byte Type Argument
A Perl scalaris converted to a value of the SPVM C<byte> type by L<SvIV|https://perldoc.perl.org/perlapi#SvIV> perlapi and a type cast to C<int8_t> in the C language.
(int8_t)SvIV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
=head2 short Type Argument
A Perl scalaris converted to a value of the SPVM C<short> type by L<SvIV|https://perldoc.perl.org/perlapi#SvIV> perlapi and a type cast to C<int16_t> in the C language.
(int16_t)SvIV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
=head2 intType Argument
A Perl scalaris converted to a value of the SPVM C<int> type by L<SvIV|https://perldoc.perl.org/perlapi#SvIV> perlapi and a type cast to C<int32_t> in the C language.
(int32_t)SvIV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
Examples:
my$int_object= SPVM::Int->new(10);
=head2 long Type Argument
A Perl scalaris converted to a value of the SPVM C<long> type by L<SvIV|https://perldoc.perl.org/perlapi#SvIV> perlapi and a type cast to C<int64_t> in the C language.
(int64_t)SvIV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
Examples:
my$long_object= SPVM::Long->new(10);
=head2 float Type Argument
A Perl scalaris converted to a value of the SPVM C<float> type by L<SvNV|https://perldoc.perl.org/perlapi#SvNV> perlapi and a type cast to C<float> in the C language.
(float)SvNV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
Examples:
my$float_object= SPVM::Float->new(10.5);
=head2 double Type Argument
A Perl scalaris converted to a value of the SPVM C<double> type by L<SvNV|https://perldoc.perl.org/perlapi#SvNV> perlapi and a type cast to C<double> in the C language.
(double)SvNV(perl_scalar)
Exceptions:
The argument must be a non-reference scalar. Otherwise an exception is thrown.
Examples:
my$double_object= SPVM::Double->new(10.5);
=head2 string Type Argument
A Perl scalaris converted to a value of the SPVM C<string> type by L</"new_string"> method.
Exceptions:
Exceptions thrown by L</"new_string"> method are thrown.
Examples:
my$substr= SPVM::Fn->substr("abcde", 0, 3);
=head2 Any Object Type Argument
No conversion is performed.
Exceptions:
The argument must be an SPVM::BlessedObject object or undef. Otherwise an exception is thrown.
=head2 Class Type Argument
No conversion is performed.
Exceptions:
The argument must be an SPVM::BlessedObject::Class object of a Z assignable type or undef. Otherwise an exception is thrown.
=head2 Interaface Type Argument
No conversion is performed.
Exceptions:
The argument must be an SPVM::BlessedObject::Class object of a Z assignable type or undef. Otherwise an exception is thrown.
=head2 Multi-Numeric Type Argument
=head3 Multi-Numeric byte
Converts a hash reference containing field names and its valuesof the multi-numeric byte type to a value of the multi-numeric byte type.
Each field value is coverted by the conversion of L</"byte Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2b type
SPVM::MyClass->foo({x=> 1, y=> 2});
=head3 Multi-Numeric short Type Argument
Converts a hash reference containing field names and its valuesof the multi-numeric short type to a value of the multi-numeric short type.
Each field value is coverted by the conversion of L</"short Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2s type
SPVM::MyClass->foo({x=> 1, y=> 2});
=head3 Multi-Numeric intType Argument
Converts a hash reference containing field names and its valuesof the multi-numeric inttype to a value of the multi-numeric inttype.
Each field value is coverted by the conversion of L</"int Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2i type
SPVM::MyClass->foo({x=> 1, y=> 2});
=head3 Multi-Numeric long Type Argument
Converts a hash reference containing field names and its valuesof the multi-numeric long type to a value of the multi-numeric long type.
Each field value is coverted by the conversion of L</"long Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2l type
SPVM::MyClass->foo({x=> 1, y=> 2});
=head3 Multi-Numeric float Type Argument
Converts a hash reference containing field names and its valuesof the multi-numeric float type to a value of the multi-numeric float type.
Each field value is coverted by the conversion of L</"float Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2f type
SPVM::MyClass->foo({x=> 1.2, y=> 2.3});
=head3 Multi-Numeric double Type Argument
Converts a hash reference containing field names and its valuesof the multi-numeric double type to a value of the multi-numeric double type.
Each field value is coverted by the conversion of L</"double Type Argument">.
Exceptions:
The argument must be a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl hash reference to MyClassPoint_2d type
SPVM::MyClass->foo({x=> 1.2, y=> 2.3});
=head2 Numeric Reference Type Argument
=head3 byte Reference Type Argument
A Perl reference is converted to a value of the SPVM byte reference type.
The referenced value is converted to a value of the SPVM C<byte> type by the conversion of L</"byte Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"byte Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to byte* type
my$value= 23;
SPVM::MyClass->foo(\$value);
=head3 short Reference Type Argument
A Perl reference is converted to a value of the SPVM short reference type.
The referenced value is converted to a value of the SPVM C<short> type by the conversion of L</"short Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"short Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to short* type
my$value= 23;
SPVM::MyClass->foo(\$value);
=head3 intReference Type Argument
A Perl reference is converted to a value of the SPVM intreference type.
The referenced value is converted to a value of the SPVM C<int> type by the conversion of L</"int Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"int Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to int* type
my$value= 23;
SPVM::MyClass->foo(\$value);
=head3 long Reference Type Argument
A Perl reference is converted to a value of the SPVM long reference type.
The referenced value is converted to a value of the SPVM C<long> type by the conversion of L</"long Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"long Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to long* type
my$value= 23;
SPVM::MyClass->foo(\$value);
=head3 float Reference Type Argument
A Perl reference is converted to a value of the SPVM float reference type.
The referenced value is converted to a value of the SPVM C<float> type by the conversion of L</"float Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"float Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to float* type
my$value= 23.5;
SPVM::MyClass->foo(\$value);
=head3 double Reference Type Argument
A Perl reference is converted to a value of the SPVM double reference type.
The referenced value is converted to a value of the SPVM C<double> type by the conversion of L</"double Type Argument">.
After returning from the SPVM method, the referenced value is converted to a Perl scalarby the conversion of L</"double Type Return Value">
Exceptions:
The argument must be a scalarreference. Otherwise an exception is thrown.
Examples:
# Converts a Perl scalar reference to double* type
my$value= 23.5;
SPVM::MyClass->foo(\$value);
=head2 Multi-Numeric Reference Type Argument
=head3 Multi-Numeric byte Reference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<byte> reference type.
Each field is converted to a value of the SPVM C<byte> type by the conversion of L</"byte Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"byte Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the MyClassPoint_2b* type
my$value= {x=> 1, y=> 2};
SPVM::MyClass->foo(\$value);
=head3 Multi-Numeric short Reference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<short> reference type.
Each field is converted to a value of the SPVM C<short> type by the conversion of L</"short Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"short Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the MyClassPoint_2s* type
my$value= {x=> 1, y=> 2};
SPVM::MyClass->foo(\$value);
=head3 Multi-Numeric intReference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<int> reference type.
Each field is converted to a value of the SPVM C<int> type by the conversion of L</"int Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"int Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the SPVM MyClassPoint_2i* type
my$value= {x=> 1, y=> 2};
SPVM::MyClass->foo(\$value);
=head3 Multi-Numeric long Reference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<long> reference type.
Each field is converted to a value of the SPVM C<long> type by the conversion of L</"long Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"long Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the SPVM MyClassPoint_2l* type
my$value= {x=> 1, y=> 2};
SPVM::MyClass->foo(\$value);
=head3 Multi-Numeric float Reference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<float> reference type.
Each field is converted to a value of the SPVM C<float> type by the conversion of L</"float Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"float Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the SPVM MyClassPoint_2f* type
my$value= {x=> 1,2, y=> 2.3};
SPVM::MyClass->foo(\$value);
=head3 Multi-Numeric double Reference Type Argument
A Perl reference is converted to an SPVM multi-numeric C<double> reference type.
Each field is converted to a value of the SPVM C<double> type by the conversion of L</"double Type Argument">.
After returning from the SPVM method, eachfield value is converted to a Perl scalarby the conversion of L</"double Type Return Value">.
Exceptions:
The reference must be a scalarreference to a hash reference. Otherwise an exception is thrown.
If a field is not found, an exception is thrown.
Examples:
# Converts a Perl scalar reference to a hash reference to the SPVM MyClassPoint_2d* type
my$value= {x=> 1.2, y=> 2.3};
SPVM::MyClass->foo(\$value);
=head2 Array Type Argument
=head3 byte[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<byte[]> type by L</"new_byte_array"> method.
Exceptions:
Exceptions thrown by L</"new_byte_array"> method are thrown.
Examples:
# Converts a Perl array reference to the byte[] type
SPVM::MyClass->foo([1, 2, 3]);
=head3 short[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<short[]> type by L</"new_short_array"> method.
Exceptions:
Exceptions thrown by L</"new_short_array"> method are thrown.
Examples:
# Converts a Perl array reference to the short[] type
SPVM::MyClass->foo([1, 2, 3]);
=head3 int[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<int[]> type by L</"new_int_array"> method.
Exceptions:
Exceptions thrown by L</"new_int_array"> method are thrown.
Examples:
# Converts a Perl array reference to the int[] type
SPVM::MyClass->foo([1, 2, 3]);
=head3 long[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<long[]> type by L</"new_long_array"> method.
Exceptions:
Exceptions thrown by L</"new_long_array"> method are thrown.
Examples:
# Converts a Perl array reference to the long[] type
SPVM::MyClass->foo([1, 2, 3]);
=head3 float[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<float[]> type by L</"new_float_array"> method.
Exceptions:
Exceptions thrown by L</"new_float_array"> method are thrown.
Examples:
# Converts a Perl array reference to float[] type
SPVM::MyClass->foo([1.2, 2.3, 3.4]);
=head3 double[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<double[]> type by L</"new_double_array"> method.
Exceptions:
Exceptions thrown by L</"new_double_array"> method are thrown.
Examples:
# Converts a Perl array reference to the double[] type
SPVM::MyClass->foo([1.2, 2.3, 3.4]);
=head3 string[] Type Argument
A Perl array reference(or undef) is converted to a value of the C<string[]> type by L</"new_string_array"> method.
Exceptions:
Exceptions thrown by L</"new_string_array"> method are thrown.
Examples:
# Converts a Perl array reference to the string[] type
SPVM::MyClass->foo(["あい", "うえ", "お"]);
=head3 Any Object Array Type Argument
A Perl array reference(or undef) is converted to a value of the C<object[]> type by L</"new_object_array"> method.
Exceptions:
Exceptions thrown by L</"new_object_array"> method are thrown.
=head3 Class Array Type Argument
A Perl array reference(or undef) is converted to a value of the class type by L</"new_object_array"> method.
Exceptions:
Exceptions thrown by L</"new_object_array"> method are thrown.
=head3 Interface Array Type Argument
A Perl array reference(or undef) is converted to a value of the interface type by L</"new_object_array"> method.
Exceptions:
Exceptions thrown by L</"new_object_array"> method are thrown.
=head3 Multi-Numeric Array Type Argument
A Perl array reference(or undef) is converted to a value of the multi-numeric array type by L</"new_mulnum_array"> method.
Exceptions:
Exceptions thrown by L</"new_mulnum_array"> method are thrown.
Examples:
# Converts a Perl array reference of a hash reference to the Complex_2d[] type
If the SPVM returnvalue is undef, it is converted to Perl undef.
Otherwise it is converted to a L<SPVM::BlessedObject::String> object.
=head2 Multi-Numeric Type Return Value
The value of the SPVM multi-numeric type is converted to a Perl hash reference that hasthe field names of the multi-numeric type as the keys.
Each field value is converted by the conversion of L</"byte Type Return Value">, L</"short Type Return Value">, L</"int Type Return Value">, L</"long Type Return Value">, L</"float Type Return Value">, L</"double Type Return Value"> according to the multi-numeric type.
=head2 Any Object Type Return Value
If the SPVM returnvalue is undef, it is converted to Perl undef.
If the type of the returnvalue is an array type, it is converted to a L<SPVM::BlessedObject::Array> object.
If the type of the returnvalue is an string type, it is converted to a L<SPVM::BlessedObject::String> object.
Otherwise it is converted to a L<SPVM::BlessedObject::Class> object.
=head2 Class Type Return Value
If the SPVM returnvalue is undef, it is converted to Perl undef.
Otherwise it is converted to a L<SPVM::BlessedObject::Class> object.
=head2 Interface Type Return Value
If the SPVM returnvalue is undef, it is converted to Perl undef.
Otherwise it is converted to a L<SPVM::BlessedObject::Class> object.
=head2 Array Type Return Value
If the SPVM returnvalue is undef, it is converted to Perl undef.
Otherwise it is converted to a L<SPVM::BlessedObject::Array> object.
=head1 Copyright & License
Copyright (c) 2023 Yuki Kimoto
MIT License
Keyboard Shortcuts
Global
s
Focus search bar
?
Bring up this help dialog
GitHub
gp
Go to pull requests
gi
go to github issues (only if github is preferred repository)