dataSetSliceCopies
Same as dataSetSlice, but will copy value num_copies times all concatenated
into a single slice. Useful to get dvui to allocate a specific number of
entries that you want to fill in after.
Parameters
Source
Implementation
pub fn dataSetSliceCopies(win: ?*Window, id: Id, name: []const u8, value: anytype, num_copies: usize) void {
data.setSliceCopies(win, .widget(id, name), value, num_copies);
}