Scalars are strings and numbers in Perl.
|
See Also: Inherited members from Value.
|
Scalar(Interpreter, int) Creates a new scalar with an integer value. |
|
Scalar(Interpreter, double) Creates a new scalar with a double value. |
|
Scalar(Interpreter, string) Creates a new scalar with a string value. |
|
Scalar(Scalar) Creates a new scalar with the same value of the given scalar. |
|
Scalar(Interpreter, object) Creates a new scalar with the given value. |
|
DoubleValue |
double. Gets/sets the value of the Scalar as a double. |
|
IntValue |
int. Gets/sets the value of the Scalar as an integer. |
|
StringValue |
string. Gets/sets the value of the Scalar as a string. |
|
Append(Scalar) Appends a string to the end of this Scalar.
|
|
|
Concat(Scalar) Returns the concatenation of this Scalar and another Scalar.
|
|
| static |
Eq(Scalar, Scalar) Tests for string equality on two Scalars, using the Perl eq operator.
|
|
SetValue(string) Changes the value of the Scalar to a string.
|
|
|
SetValue(int) Changes the value of the Scalar to an integer.
|
|
|
SetValue(double) Changes the value of the Scalar to a double.
|
|
| static |
StringCompare(Scalar, Scalar) Performs a string comparison on two Scalars, using the Perl string comparison operator.
|
|
Conversion: Perl.Scalar
to System.String Implicitly converts a Scalar to its string value.
|
|
Conversion: Perl.Scalar
to System.Int32 Implicitly converts a Scalar to its integer value.
|
|
Conversion: Perl.Scalar
to System.Double Implicitly converts a Scalar to its double value.
|
Creates a new scalar with an integer value.
Creates a new scalar with a double value.
Creates a new scalar with a string value.
Creates a new scalar with the same value of the given scalar.
Creates a new scalar with the given value.
Changes the value of the Scalar to a string.
Changes the value of the Scalar to an integer.
Changes the value of the Scalar to a double.
Appends a string to the end of this Scalar.
Returns the concatenation of this Scalar and another Scalar.
Performs a string comparison on two Scalars, using the Perl string comparison operator.
Tests for string equality on two Scalars, using the Perl eq operator.
Implicitly converts a Scalar to its string value.
Implicitly converts a Scalar to its integer value.
Implicitly converts a Scalar to its double value.
Gets/sets the value of the Scalar as a string.
Gets/sets the value of the Scalar as an integer.
Gets/sets the value of the Scalar as a double.