commonMain.com.divpundir.mavlink.api.extensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-jvm Show documentation
Show all versions of api-jvm Show documentation
A modern MAVLink library for the JVM written in Kotlin.
package com.divpundir.mavlink.api
public fun E.wrap(): MavEnumValue = MavEnumValue.of(this)
public fun E.wrap(): MavBitmaskValue = MavBitmaskValue.of(this)
public fun List.wrap(): MavBitmaskValue = MavBitmaskValue.of(this)
public infix operator fun MavBitmaskValue.contains(flag: E): Boolean =
this.value and flag.value == flag.value