Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for element (0.25 sec)

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

        @ParametricNullness
        public V set(int index, @ParametricNullness V element) {
          refreshIfEmpty();
          return getListDelegate().set(index, element);
        }
    
        @Override
        public void add(int index, @ParametricNullness V element) {
          refreshIfEmpty();
          boolean wasEmpty = getDelegate().isEmpty();
          getListDelegate().add(index, element);
          totalSize++;
          if (wasEmpty) {
            addToMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @ParametricNullness
        public V set(int index, @ParametricNullness V element) {
          refreshIfEmpty();
          return getListDelegate().set(index, element);
        }
    
        @Override
        public void add(int index, @ParametricNullness V element) {
          refreshIfEmpty();
          boolean wasEmpty = getDelegate().isEmpty();
          getListDelegate().add(index, element);
          totalSize++;
          if (wasEmpty) {
            addToMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
Back to top