blob: 9391a2cbf354a205794c695f752c5cc1fcf15b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Execution\Results;
use Nsfisis\Waddiwasi\WebAssembly\Execution\Ref;
use Nsfisis\Waddiwasi\WebAssembly\Execution\Result;
final readonly class Values extends Result
{
/**
* @param list<int|float|Ref> $values
*/
protected function __construct(
public array $values,
) {
}
}
|