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
PagedSeq's documentation promises that x.map(f) will return a PagedSeq, but in fact it defers to immutable.IndexedSeq's builder and thus ends up a Vector. This is tolerable behavior, but the documentation should reflect the actual behavior. Oddly, drop gives a Vector while slice gives a PagedSeq.