discord-jadx/app/src/main/java/kotlin/reflect/KProperty0.java
2021-06-27 22:44:35 +02:00

18 lines
390 B
Java

package kotlin.reflect;
import kotlin.jvm.functions.Function0;
import kotlin.reflect.KProperty;
/* compiled from: KProperty.kt */
public interface KProperty0<V> extends KProperty<V>, Function0<V> {
/* compiled from: KProperty.kt */
public interface Getter<V> extends KProperty.Getter<V>, Function0<V> {
}
V get();
Object getDelegate();
Getter<V> getGetter();
}