| 123 | |
| 124 | |
| 125 | bool Array::isNull(unsigned int index) const |
| 126 | { |
| 127 | if (index < _values.size()) |
| 128 | { |
| 129 | Dynamic::Var value = _values[index]; |
| 130 | return value.isEmpty(); |
| 131 | } |
| 132 | return true; |
| 133 | } |
| 134 | |
| 135 | |
| 136 | bool Array::isObject(unsigned int index) const |
no test coverage detected