The Kotlin compiler gave me the following warning:
Warning:(399, 1) Kotlin: Expected performance impact of inlining '...' can be insignificant. Inlining works best for functions with lambda parameters
In this case I would like to suppress this warning. I don't know what value to give to @Suppress
, however, and I can't find any documentation for what values @Suppress
accepts.
What are the possible values that can be given to @Suppress
, and what do they mean?