ecs_table_get_column

Function ecs_table_get_column 

Source
pub unsafe extern "C" fn ecs_table_get_column(
    table: *const ecs_table_t,
    index: i32,
    offset: i32,
) -> *mut c_void
Expand description

Get column from table by column index. This operation returns the component array for the provided index.

@param table The table. @param index The column index. @param offset The index of the first row to return (0 for entire column). @return The component array, or NULL if the index is not a component.