mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
12 lines
341 B
Java
12 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);
|
||
|
}
|