PhpSpreadsheet/tests/data/Calculation/Functions/N.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

139 lines
1.6 KiB
PHP

<?php
return [
[
0,
],
[
0,
null,
],
[
-1,
-1,
],
[
1.25,
1.25,
],
[
0,
'',
],
[
0,
'2.5',
],
[
0,
'TRUE',
],
[
0,
'ABCDE',
],
[
1,
true,
],
[
'#DIV/0!',
'#DIV/0!',
],
[
'#NUM!',
'#NUM!',
],
[
0,
[
null,
],
],
[
123,
[
123,
],
],
[
123,
[
[
123,
456,
],
],
],
[
123,
[
[
123,
'A',
],
],
],
[
0,
[
[
'A',
123,
],
],
],
[
0,
[
[
'A',
123,
],
[
456,
789,
],
],
],
[
123,
[
[
123,
'A',
],
[
456,
789,
],
],
],
[
123,
[
[
123,
456,
],
[
'A',
789,
],
],
],
[
123,
[
[
123,
456,
],
[
789,
'A',
],
],
],
];