Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeMapping (0.12 sec)

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

        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @Nullable Object rowKey, @Nullable Object columnKey, @Nullable Object value) {
        if (containsMapping(rowKey, columnKey, value)) {
          remove(rowKey, columnKey);
          return true;
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
Back to top