HH\Set::__toString
Returns the string
version of the current Set
, which is "Set"
public function __toString(): string;
Returns
string
- Thestring
"Set"
.
Examples
The string version of a Set
is always "Set"
:
$s = Set {1, 2, 3};
echo $s."\n";
$s2 = Set {'a', 'b', 'c'};
echo $s2."\n";
$s3 = Set {};
echo $s3."\n";
Set
Set
Set