Kotlin
Function with '= { ... }' and inferred return type
Info
New
Last modified: 03 December 2024 Reports functions with = { ... }
and inferred return type.
Example:
fun sum(a: Int, b: Int) = { a + b } // The return type of this function is '() -> Int'.
The quick fix removes braces:
fun sum(a: Int, b: Int) = a + b
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
FunctionWithLambdaExpressionBody
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 243.23126-IJ |
Thanks for your feedback!
Was this page helpful?