mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
17 lines
746 B
Java
17 lines
746 B
Java
|
package androidx.compose.runtime;
|
||
|
|
||
|
import kotlin.Metadata;
|
||
|
|
||
|
/* compiled from: BitwiseOperators.kt */
|
||
|
@Metadata(d1 = {"\u0000\n\n\u0000\n\u0002\u0010\b\n\u0002\b\u0003\u001a\u0015\u0010\u0000\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0001H\u0080\f\u001a\u0015\u0010\u0003\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0001H\u0080\f¨\u0006\u0004"}, d2 = {"rol", "", "other", "ror", "runtime_release"}, k = 2, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class BitwiseOperatorsKt {
|
||
|
public static final int ror(int i, int i2) {
|
||
|
return Integer.rotateRight(i, i2);
|
||
|
}
|
||
|
|
||
|
public static final int rol(int i, int i2) {
|
||
|
return Integer.rotateLeft(i, i2);
|
||
|
}
|
||
|
}
|