- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for trustedPut (0.14 seconds)
-
android/guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java
return trustedGet(TypeToken.of(type)); } @Override public <T extends @NonNull B> @Nullable T getInstance(TypeToken<T> type) { return trustedGet(type.rejectTypeVariables()); } @Override @CanIgnoreReturnValue public <T extends B> @Nullable T putInstance( Class<@NonNull T> type, @ParametricNullness T value) { return trustedPut(TypeToken.of(type), value); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java
this.delegate = delegate; } @Override public <T extends B> @Nullable T getInstance(TypeToken<T> type) { return trustedGet(type.rejectTypeVariables()); } @Override public <T extends B> @Nullable T getInstance(Class<T> type) { return trustedGet(TypeToken.of(type)); } /** * Guaranteed to throw an exception and leave the map unmodified. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 5.5K bytes - Click Count (0)