[][src]Function dart_sys::Dart_ListSetAt

pub unsafe extern "C" fn Dart_ListSetAt(
    list: Dart_Handle,
    index: isize,
    value: Dart_Handle
) -> Dart_Handle

Sets the Object at some index of a List.

If the index is out of bounds, an error occurs.

May generate an unhandled exception error.

\param array A List. \param index A valid index into the List. \param value The Object to put in the List.

\return A valid handle if no error occurs during the operation.