FLEncoder_BeginArray

Function FLEncoder_BeginArray 

Source
pub unsafe extern "C" fn FLEncoder_BeginArray(
    arg1: FLEncoder,
    reserveCount: usize,
) -> bool
Expand description

Begins writing an array value to an encoder. This pushes a new state where each subsequent value written becomes an array item, until FLEncoder_EndArray is called. @param reserveCount Number of array elements to reserve space for. If you know the size of the array, providing it here speeds up encoding slightly. If you don’t know, just use zero.