mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
11 lines
341 B
Java
11 lines
341 B
Java
package com.google.common.hash;
|
|
|
|
import com.google.errorprone.annotations.DoNotMock;
|
|
import java.io.Serializable;
|
|
|
|
@DoNotMock("Implement with a lambda")
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public interface Funnel<T> extends Serializable {
|
|
void funnel(@ParametricNullness T t, PrimitiveSink primitiveSink);
|
|
}
|