| 110 | |
| 111 | |
| 112 | Object::Ptr Array::getObject(unsigned int index) const |
| 113 | { |
| 114 | Object::Ptr result; |
| 115 | |
| 116 | Var value = get(index); |
| 117 | if (value.type() == typeid(Object::Ptr)) |
| 118 | { |
| 119 | result = value.extract<Object::Ptr>(); |
| 120 | } |
| 121 | return result; |
| 122 | } |
| 123 | |
| 124 | |
| 125 | bool Array::isNull(unsigned int index) const |