Class Functions.ToMapKeyValueSelector<K,V,T>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.functions.Functions.ToMapKeyValueSelector<K,V,T>
-
- All Implemented Interfaces:
BiConsumer<java.util.Map<K,V>,T>
- Enclosing class:
- Functions
static final class Functions.ToMapKeyValueSelector<K,V,T> extends java.lang.Object implements BiConsumer<java.util.Map<K,V>,T>
-
-
Field Summary
Fields Modifier and Type Field Description private Function<? super T,? extends K>
keySelector
private Function<? super T,? extends V>
valueSelector
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.util.Map<K,V> m, T t)
Performs an operation on the given values.
-
-
-
Method Detail
-
accept
public void accept(java.util.Map<K,V> m, T t) throws java.lang.Throwable
Description copied from interface:BiConsumer
Performs an operation on the given values.- Specified by:
accept
in interfaceBiConsumer<K,V>
- Parameters:
m
- the first valuet
- the second value- Throws:
java.lang.Throwable
- if the implementation wishes to throw any type of exception
-
-