Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for cartesianProduct (0.05 seconds)

  1. android/guava/src/com/google/common/collect/Sets.java

       * @throws IllegalArgumentException if the cartesian product size exceeds the {@code int} range
       * @since 2.0
       */
      @SafeVarargs
      public static <B> Set<List<B>> cartesianProduct(Set<? extends B>... sets) {
        return cartesianProduct(asList(sets));
      }
    
      private static final class CartesianSet<E> extends ForwardingCollection<List<E>>
          implements Set<List<E>> {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 81.6K bytes
    - Click Count (0)
Back to Top