| 307 | //----------------------------------------------------------------------------- |
| 308 | |
| 309 | void ArrayObject::insert( const String &key, const String &value, S32 index ) |
| 310 | { |
| 311 | index = mClamp( index, 0, mArray.size() ); |
| 312 | mArray.insert( index, Element( key, value ) ); |
| 313 | } |
| 314 | |
| 315 | //----------------------------------------------------------------------------- |
| 316 |