The "ds_grid_empty" FunctionSyntax#ds_grid_empty(id);CopyArgumentTypeDescriptionidds_gridThe data structure to checkDescription#Checks whether the specified ds_grid is empty and returns true or false.cautionThis function does not check whether or not the grid exists, and checking a non-existant grid will throw an error.Example#var ds = ds_grid_create(1, 0); if (ds_grid_empty(ds)) { ds_grid_insert_row(ds, 0, "init");}Copy