alex-plekhanov commented on a change in pull request #6554: IGNITE-11073:
Backup page store manager, initial
URL: https://github.com/apache/ignite/pull/6554#discussion_r388862762
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/util/GridIntList.java
##########
@@ -137,6 +138,22 @@ public GridIntList copy() {
return res;
}
+ /**
+ * @param ints A set of integer values.
+ * @return Representation as primitive list.
+ */
+ public static GridIntList valueOf(Set<Integer> ints) {
Review comment:
Let's extend `Set` to `Collection` here (in this case we'll be able to
convert `List<Integer>` to `GridIntList` for example)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services