Open Source & Linux Lab

It's better when it's simple

User Tools

Site Tools


courses:high_performance_computing:coroutines_map

This is an old revision of the document!


Coroutines Map

interface CoroutineMap<K, V> {
    suspend fun put(key: K, value: V) : V?
 
    suspend fun get(key: K) : V?
 
    suspend fun remove(key: K) : V?
 
    suspend fun isEmpty(): Boolean
 
    suspend fun entrySet(): Set<Map.Entry<K,V>>
}
courses/high_performance_computing/coroutines_map.1591093449.txt.gz · Last modified: 2020/06/02 13:24 by odoronin