Metadata

ID: kotlin-code-style/type-parameter-comment

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

class Foo1<in /* some comment */ Bar>

Compliant Code Examples

class Foo1<
    /* some comment */ 
    out Bar
    >
class Foo2<
    // some comment 
    out Bar
    >