Class MutableList<T>

java.lang.Object
com.kingsrook.qqq.backend.core.utils.collections.MutableList<T>
All Implemented Interfaces:
Iterable<T>, Collection<T>, List<T>

public class MutableList<T> extends Object implements List<T>
Object to wrap a List, so that in case a caller provided an immutable List, you can safely perform mutating operations on it (in which case, it'll get replaced by an actual mutable list).