mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
366 B
Kotlin
14 lines
366 B
Kotlin
package test
|
|
|
|
import org.jetbrains.annotations.*
|
|
|
|
public trait LoadIterableWithNullability<T> : java.lang.Object {
|
|
Mutable
|
|
public fun getIterable(): MutableIterable<T>
|
|
public fun setIterable([Mutable] p0: MutableIterable<T>)
|
|
|
|
ReadOnly
|
|
public fun getReadOnlyIterable(): Iterable<T>
|
|
public fun setReadOnlyIterable([ReadOnly] p0: Iterable<T>)
|
|
}
|