Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for iff (0.13 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

          return true;
        }
    
        // value changed
        return false;
      }
    
      /**
       * Atomically remove {@code key} from the map iff its associated value is 0.
       *
       * @since 20.0
       */
      @CanIgnoreReturnValue
      public boolean removeIfZero(K key) {
        return remove(key, 0);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeMultiset.java

         * the elem field without a null check by calling getElement().
         */
        @CheckForNull private final E elem;
    
        // elemCount is 0 iff this node has been deleted.
        private int elemCount;
    
        private int distinctElements;
        private long totalCount;
        private int height;
        @CheckForNull private AvlNode<E> left;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 34.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/ValueGraph.java

       * @since 27.1
       */
      @CheckForNull
      V edgeValueOrDefault(EndpointPair<N> endpoints, @CheckForNull V defaultValue);
    
      //
      // ValueGraph identity
      //
    
      /**
       * Returns {@code true} iff {@code object} is a {@link ValueGraph} that has the same elements and
       * the same structural relationships as those in this graph.
       *
       * <p>Thus, two value graphs A and B are equal if <b>all</b> of the following are true:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 15K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/AbstractBaseGraph.java

      protected final void validateEndpoints(EndpointPair<?> endpoints) {
        checkNotNull(endpoints);
        checkArgument(isOrderingCompatible(endpoints), ENDPOINTS_MISMATCH);
      }
    
      /**
       * Returns {@code true} iff {@code endpoints}' ordering is compatible with the directionality of
       * this graph.
       */
      protected final boolean isOrderingCompatible(EndpointPair<?> endpoints) {
        return endpoints.isOrdered() == this.isDirected();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

      /*
       * TODO: consider adding MultisetFeatures.SUPPORTS_SET_COUNT. Currently we
       * assume that using setCount() to increase the count is permitted iff add()
       * is permitted and similarly for decrease/remove(). We assume that a
       * setCount() no-op is permitted if either add() or remove() is permitted,
       * though we also allow it to "succeed" if neither is permitted.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

      /*
       * TODO: consider adding MultisetFeatures.SUPPORTS_SET_COUNT. Currently we
       * assume that using setCount() to increase the count is permitted iff add()
       * is permitted and similarly for decrease/remove(). We assume that a
       * setCount() no-op is permitted if either add() or remove() is permitted,
       * though we also allow it to "succeed" if neither is permitted.
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graph.java

       *
       * @since 27.1
       */
      @Override
      boolean hasEdgeConnecting(EndpointPair<N> endpoints);
    
      //
      // Graph identity
      //
    
      /**
       * Returns {@code true} iff {@code object} is a {@link Graph} that has the same elements and the
       * same structural relationships as those in this graph.
       *
       * <p>Thus, two graphs A and B are equal if <b>all</b> of the following are true:
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Network.java

       *
       * @since 27.1
       */
      boolean hasEdgeConnecting(EndpointPair<N> endpoints);
    
      //
      // Network identity
      //
    
      /**
       * Returns {@code true} iff {@code object} is a {@link Network} that has the same elements and the
       * same structural relationships as those in this network.
       *
       * <p>Thus, two networks A and B are equal if <b>all</b> of the following are true:
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 21.1K bytes
    - Viewed (0)
Back to top