Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
11 lines (10 sloc)
240 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kweb.shoebox | |
/** | |
* Created by ian on 3/22/17. | |
*/ | |
interface Store<T> { | |
val entries: Iterable<KeyValue<T>> | |
fun remove(key: String): T? | |
operator fun get(key: String): T? | |
operator fun set(key: String, value: T) : T? | |
} |