mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
243 B
Kotlin
Vendored
10 lines
243 B
Kotlin
Vendored
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>?)
|
|
}
|