In the below code, i'm trying to convert int bit flags to enum, but I'm not getting the right results.
Enum Flags
enum class State {
NONE = 0,
FORWARD =4,
BACKWARD =5,
}
Bit Flag and conversion
infix fun Int.withFlag(flag: Int) = this or flag
fun fromInt(value: Int) = values().mapNotNull {
if (it.value.withFlag(value) == value ) it else null
}
Action
// backward
val flag = 5
State.fromInt(flag)
Results
// results NONE, FORWARD, BACKWARD
// expected BACKWARD
Something like this maybe: