bcmath.stub.php 921 B

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