15 lines
311 B
Java
15 lines
311 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.google.common.base;
|
|
|
|
import com.google.common.annotations.GwtCompatible;
|
|
import javax.annotation.Nullable;
|
|
|
|
@GwtCompatible
|
|
public interface Function<F, T> {
|
|
@Nullable
|
|
public T apply(@Nullable F var1);
|
|
|
|
public boolean equals(@Nullable Object var1);
|
|
}
|