[][src]Function dart_sys::Dart_ListGetRange

pub unsafe extern "C" fn Dart_ListGetRange(
    list: Dart_Handle,
    offset: isize,
    length: isize,
    result: *mut Dart_Handle
) -> Dart_Handle

Gets a range of Objects from a List.

If any of the requested index values are out of bounds, an error occurs.

May generate an unhandled exception error.

\param list A List. \param offset The offset of the first item to get. \param length The number of items to get. \param result A pointer to fill with the objects.

\return Success if no error occurs during the operation.