1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/** @generate-class-entries */
function bcadd(string $num1, string $num2, ?int $scale = null): string {}
function bcsub(string $num1, string $num2, ?int $scale = null): string {}
function bcmul(string $num1, string $num2, ?int $scale = null): string {}
function bcdiv(string $num1, string $num2, ?int $scale = null): string {}
function bcmod(string $num1, string $num2, ?int $scale = null): string {}
function bcpowmod(string $num, string $exponent, string $modulus, ?int $scale = null): string {}
function bcpow(string $num, string $exponent, ?int $scale = null): string {}
function bcsqrt(string $num, ?int $scale = null): string {}
function bccomp(string $num1, string $num2, ?int $scale = null): int {}
function bcscale(?int $scale = null): int {}
|