subList method
from: public abstract java.util.List<E> subList(int i, int i1)
The returned object must be released after use, by calling the release method.
Implementation
JList<$E?>? subList(
core$_.int i,
core$_.int i1,
) {
return _subList(reference.pointer, _id_subList.pointer, i, i1)
.object<JList<$E?>?>();
}