We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716d092 commit 2ba2dbbCopy full SHA for 2ba2dbb
src/main/kotlin/assimp/AiPostProcessStep.kt
@@ -400,6 +400,7 @@ enum class AiPostProcessStep(@JvmField val i: Int) {
400
infix fun Int.has(b: AiPostProcessStep) = and(b.i) != 0
401
infix fun Int.hasnt(b: AiPostProcessStep) = and(b.i) == 0
402
infix fun Int.or(b: AiPostProcessStep) = or(b.i)
403
+infix fun AiPostProcessStep.or(b: AiPostProcessStep) = i or b.i
404
infix fun Int.wo(b: AiPostProcessStep) = and(b.i.inv())
405
406
typealias AiPostProcessStepsFlags = Int
0 commit comments