paulk-asert commented on code in PR #1915:
URL: https://github.com/apache/groovy/pull/1915#discussion_r1271788471


##########
src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java:
##########
@@ -10734,6 +10734,258 @@ public static boolean disjoint(Iterable left, 
Iterable right) {
         return true;
     }
 
+    /**
+     * Create a Collection composed of the union of both collections.  Any
+     * elements that exist in either collections are added to the resultant 
collection, such
+     * that no elements are duplicated in the resultant collection.
+     * For collections of custom objects; the objects should implement 
java.lang.Comparable
+     * <pre class="groovyTestCase">assert [1,2,3,4,5,6.7,8] == 
[1,2,3,4,5].union([4,5,6,7,8])</pre>

Review Comment:
   I added a commit to fix this



-- 
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.

To unsubscribe, e-mail: notifications-unsubscr...@groovy.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to