Method ADT.CircularList()->_insert_element()
- Method
_insert_element
 void_insert_element(intindex,ValueTypevalue)- Description
 Insert an element in the list at the position
index, the value at the positionindexand all above will have their index increased by one.- Parameter 
index The index to insert the value at.
- Parameter 
value The new value.
- Throws
 An error if the index is out of range.
- Note
 The max_size is increased by one.
- See also