Skip to content

Commit

Permalink
stray file
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Mar 23, 2017
1 parent 9cb6238 commit c6189a8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/kotlin/com/github/sanity/shoebox/Store.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.github.sanity.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?
}

0 comments on commit c6189a8

Please sign in to comment.