| 343 | } |
| 344 | |
| 345 | const ValueArray* Value::getArray() const noexcept { |
| 346 | if (getType() == ValueType::Array) { |
| 347 | return toPointer<ValueArray>(); |
| 348 | } |
| 349 | |
| 350 | return nullptr; |
| 351 | } |
| 352 | |
| 353 | const ValueTypedArray* Value::getTypedArray() const noexcept { |
| 354 | if (getType() == ValueType::TypedArray) { |