summaryrefslogtreecommitdiff
path: root/ext/bcmath/bcmath.stub.php
blob: e0b86ebe5b9d2b2872f329f8a2587a62f870d92e (plain)
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 {}