All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.entrygenerator.ext.ModelExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
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?




© 2015 - 2024 Weber Informatics LLC | Privacy Policy