module LRU

Public Instance Methods

create(num) click to toggle source
# File lib/lru/cache.rb, line 7
def create(num)
  Cache.new num
end