https://kotlinlang.org logo
d

dstarcev

08/02/2016, 2:58 PM
I am implementing a simple key-value store interface
Copy code
interface KeyValueStore {
  fun put(key: String, value: Serializable)
  fun remove(key: String)
  fun <T> get(key: String): T?
}