tracer.util.getAnnotationByType.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksp-util Show documentation
Show all versions of ksp-util Show documentation
"Remember to use with my sample which hasn't come out yet."
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