mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
367 B
Kotlin
Vendored
15 lines
367 B
Kotlin
Vendored
// JVM_ANNOTATIONS
|
|
package test
|
|
|
|
import kotlin.annotations.jvm.*
|
|
|
|
public interface LoadIterableWithNullability<T> {
|
|
@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>)
|
|
}
|