Enforce angle bracket spacing
This product is not supported for your selected
Datadog site. (
).
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: kotlin-code-style/angle-bracket-spacing
Language: Kotlin
Severity: Notice
Category: Code Style
Description
No description found
Non-Compliant Code Examples
val foo: Map< Int, String> = mapOf()
val bar: Map<Int, String > = mapOf()
val foo: Map< Int, String > = mapOf()
val baz: Set<String > = setOf()
val bin: Set< String, Pair< Int, String > > = setOf()
Compliant Code Examples
val foo: Map<Int, String> = mapOf()
val bar: Map<Int, String> = mapOf()
val baz: Map<Int, String> = mapOf()
Seamless integrations. Try Datadog Code Security