Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __construct (0.2 sec)

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

          if (length == 0) {
            return emptyMultiset(comparator);
          }
          RegularImmutableSortedSet<E> elementSet =
              (RegularImmutableSortedSet<E>) ImmutableSortedSet.construct(comparator, length, elements);
          long[] cumulativeCounts = new long[length + 1];
          for (int i = 0; i < length; i++) {
            cumulativeCounts[i + 1] = cumulativeCounts[i] + counts[i];
          }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 35.7K bytes
    - Viewed (0)
Back to top