PhpSpreadsheet/tests/data/Calculation/Engineering/BITOR.php

25 lines
316 B
PHP

<?php
return [
[
0b110111,
[0b10101, 0b100111],
],
[
0b11111000,
[0b11001000, 0b10111000],
],
[
0b11111000,
[0b01001000, 0b10111000],
],
[
'#NUM!',
[12.34, 56.78],
],
[
60,
[12.00, 56.00],
],
];