assign method
void
assign(
- E item
Replaces all existing items of this list with item
Implementation
void assign(E item) {
clear();
add(item);
}
Replaces all existing items of this list with item
void assign(E item) {
clear();
add(item);
}