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

25 lines
325 B
PHP

<?php
return [
[
0b110010,
[0b10101, 0b100111],
],
[
0b01110000,
[0b11001000, 0b10111000],
],
[
0b11011000,
[0b01110010, 0b10101010],
],
[
'#VALUE!',
['ABC', 'DEF'],
],
[
'#NUM!',
[12.00, 2.82E14],
],
];