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

tracer.util.getAnnotationByType.kt Maven / Gradle / Ivy

There is a newer version: 1.8.0-1.0.2
Show newest version
package tracer.util

import com.google.devtools.ksp.getAnnotationsByType
import com.google.devtools.ksp.symbol.KSAnnotated

/**
 * Returns the first annotation of [T] on [this], or `null` if it's not found.
 */
public inline fun  KSAnnotated.getAnnotationByType(): T? =
    getAnnotationsByType(T::class).firstOrNull()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy