This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/tests/includes/supports.php

15 lines
273 B
PHP
Raw Normal View History

2019-04-16 11:00:26 +00:00
<?php
2019-04-16 11:00:50 +00:00
/**
* Check whether operator overloading is supported.
*
* @return bool
*/
function supports_operator_overloading() {
if (!Arma\Features::OPERATORS) {
echo 'skip operator overloading is not supported.';
return false;
}
return true;
}