Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. namespace Cache
  2. {
  3. public interface ICache
  4. {
  5. // return the value if key exists in cache, or -1 if not.
  6. int Get(int key);
  7.  
  8. // add a new data entry to cache
  9. void Add(int key, int value);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement