Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromEntryArray (0.07 sec)

  1. guava/src/com/google/common/collect/ImmutableBiMap.java

                    0,
                    size,
                    Ordering.from(valueComparator).onResultOf(Maps.valueFunction()));
              }
              entriesUsed = true;
              return RegularImmutableBiMap.fromEntryArray(size, entries);
          }
        }
    
        /**
         * Throws {@link UnsupportedOperationException}. This method is inherited from {@link
         * ImmutableMap.Builder}, but it does not make sense for bimaps.
         *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

                Ordering.from(valueComparator).onResultOf(Maps.<V>valueFunction()));
            localEntries = (@Nullable Entry<K, V>[]) nonNullEntries;
          }
          entriesUsed = true;
          return RegularImmutableMap.fromEntryArray(localSize, localEntries, throwIfDuplicateKeys);
        }
    
        /**
         * Returns a newly-created immutable map. The iteration order of the returned map is the order
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top