TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
371 B
26 lines
371 B
<?php
|
|
|
|
function divTypedInts(int $a, int $b): float
|
|
{
|
|
return $a / $b;
|
|
}
|
|
|
|
function divTypedFloats(float $a, float $b): float
|
|
{
|
|
return $a / $b;
|
|
}
|
|
|
|
function modTypedInts(int $a, int $b): int
|
|
{
|
|
return $a % $b;
|
|
}
|
|
|
|
function shiftLeftTypedInts(int $a, int $b): int
|
|
{
|
|
return $a << $b;
|
|
}
|
|
|
|
function shiftRightTypedInts(int $a, int $b): int
|
|
{
|
|
return $a >> $b;
|
|
}
|
|
|