Function dart_sys::Dart_ListGetAt

source ·
pub unsafe extern "C" fn Dart_ListGetAt(
    list: Dart_Handle,
    index: isize
) -> Dart_Handle
Expand description

Gets 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 list A List. \param index A valid index into the List.

\return The Object in the List at the specified index if no error occurs. Otherwise returns an error handle.