SPVM::BlessedObject::String − SPVM string
The object of "SPVM::BlessedObject::String" class holds an SPVM string.
my $string =
$blessed_object_string−>to_string;
my $binary = $blessed_object_string−>to_bin;
my $string = $blessed_object_string−>to_string;
Returns a string decoded to Perl string using utf8::decode <https://metacpan.org/pod/utf8>.
If the docoding fails, an exception is thrown.
my $binary = $blessed_object_string−>to_bin;
Returns a string as a binary.
Overloads the following operators.
my $bool = !!$blessed_object_string;
Always true.
my $string = "$blessed_object_string";
The alias for "to_string".
Copyright (c) 2023 Yuki Kimoto
MIT License