Skip to content

Instantly share code, notes, and snippets.

@RoshanNindrai
Created March 7, 2018 05:45
Show Gist options
  • Save RoshanNindrai/5f66b6e33b412ddab03aa750e43600f9 to your computer and use it in GitHub Desktop.
Save RoshanNindrai/5f66b6e33b412ddab03aa750e43600f9 to your computer and use it in GitHub Desktop.
extension ComposableCache {
func get(_ key: Key) -> Value? {
return getC(key)
}
func set(_ key: Key, _ value: Value) {
setC(key, value)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment