mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
247 B
Kotlin
10 lines
247 B
Kotlin
package test
|
|
|
|
import org.jetbrains.annotations.*
|
|
|
|
public interface LoadIterableWithConflict<T> {
|
|
[ReadOnly] [Mutable]
|
|
public fun getIterable(): MutableIterable<T>?
|
|
public fun setIterable([ReadOnly] [Mutable] p0: MutableIterable<T>?)
|
|
}
|