mapToList<U> method

List<U> mapToList<U>(
  1. TFuncMapper<T, U> funcMapper
)

Implementation

List<U> mapToList<U>(TFuncMapper<T, U> funcMapper) {
	return this.map(funcMapper).toList();
}