You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I am calling subList(0, 1) on a PersistentList<E>.
Unfortunately, after the call, I am getting back a ImmutableList<E>, which I have to convert to a persistent list again.
Hey, I am calling
subList(0, 1)
on aPersistentList<E>
.Unfortunately, after the call, I am getting back a
ImmutableList<E>
, which I have to convert to a persistent list again.This is the method that is being used:
override fun subList(fromIndex: Int, toIndex: Int): ImmutableList<E> = SubList(this, fromIndex, toIndex)
The text was updated successfully, but these errors were encountered: