godot.entrygenerator.ext.ModelExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-entry-generator Show documentation
Show all versions of godot-entry-generator Show documentation
Godot Kotlin entry code generator.
package godot.entrygenerator.ext
import godot.entrygenerator.model.GodotAnnotation
inline fun Collection.hasAnnotation() = this.any {
it is T
}
inline fun Collection.getAnnotationUnsafe() = this.first {
it is T
} as T
inline fun Collection.getAnnotation() = this.firstOrNull {
it is T
} as T?