1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/bcmath/bcmath.stub.php
2021-02-09 13:37:24 +01:00

24 lines
769 B
PHP

<?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 {}