| 150 | bool ArrayInfo::isInteger() const { return arrayfire::common::isInteger(type); } |
| 151 | |
| 152 | bool ArrayInfo::isBool() const { return arrayfire::common::isBool(type); } |
| 153 | |
| 154 | bool ArrayInfo::isLinear() const { |
| 155 | if (ndims() == 1) { return dim_strides[0] == 1; } |