PhpSpreadsheet/tests/data/Calculation/MathTrig/ODD.php
Adrien Crivelli 8dddf56c2e
Use proper syntax for variadic functions
This simplify code, increase readability and improve the function
signature for API users.
2017-01-23 15:01:20 +09:00

57 lines
556 B
PHP

<?php
return [
[
1,
null,
],
[
7,
5.4000000000000004,
],
[
-7,
-5.4000000000000004,
],
[
3,
1.5,
],
[
1,
0.10000000000000001,
],
[
3,
3,
],
[
3,
2,
],
[
-3,
-2,
],
[
-1,
-1,
],
[
'#VALUE!',
'ABC',
],
[
1,
true,
],
[
1,
false,
],
[
1,
0,
],
];