[][src]Function dart_sys::Dart_NewExternalTypedData

pub unsafe extern "C" fn Dart_NewExternalTypedData(
    type_: Dart_TypedData_Type,
    data: *mut c_void,
    length: isize
) -> Dart_Handle

Returns a TypedData object which references an external data array.

\param type The type of the data array. \param data A data array. This array must not move. \param length The length of the data array (length in type units).

\return The TypedData object if no error occurs. Otherwise returns an error handle.