| 301 | //----------------------------------------------------------------------------- |
| 302 | |
| 303 | void ArrayObject::insert( const String &key, const String &value, S32 index ) |
| 304 | { |
| 305 | index = mClamp( index, 0, mArray.size() ); |
| 306 | mArray.insert( index, Element( key, value ) ); |
| 307 | } |
| 308 | |
| 309 | //----------------------------------------------------------------------------- |
| 310 |