Closed as not planned
Description
I'm sorry if it's already been discussed.
We currently have two options:
I think it's common to want a constructor with List<T> content
and Pageable pageable
:
public PageImpl(List<T> content, Pageable pageable) {
this(content, pageable, CollectionUtils.isEmpty(content) ? 0 : content.size());
}
I just gave my two cents.