Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Inception (0.18 sec)

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

      @Override
      protected Map<K, V> delegate() {
        return delegate;
      }
    
      /** Returns its input, or throws an exception if this is not a valid key. */
      @CanIgnoreReturnValue
      @ParametricNullness
      K checkKey(@ParametricNullness K key) {
        return key;
      }
    
      /** Returns its input, or throws an exception if this is not a valid value. */
      @CanIgnoreReturnValue
      @ParametricNullness
      V checkValue(@ParametricNullness V value) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 14.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractBiMap.java

      @Override
      protected Map<K, V> delegate() {
        return delegate;
      }
    
      /** Returns its input, or throws an exception if this is not a valid key. */
      @CanIgnoreReturnValue
      @ParametricNullness
      K checkKey(@ParametricNullness K key) {
        return key;
      }
    
      /** Returns its input, or throws an exception if this is not a valid value. */
      @CanIgnoreReturnValue
      @ParametricNullness
      V checkValue(@ParametricNullness V value) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 13.8K bytes
    - Viewed (0)
Back to top