Module: Memoit
- Defined in:
- lib/memoit.rb,
lib/memoit/version.rb
Constant Summary collapse
- VERSION =
"0.1.2"
Instance Method Summary collapse
-
#memoize(name) ⇒ Object
Memoize the method with the given name.
Instance Method Details
#memoize(name) ⇒ Object
Memoize the method with the given name.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/memoit.rb', line 13 def memoize(name) ivar_name = "@_memo_#{name}".to_sym mod = Module.new do define_method(name) do |*args, &block| return super(*args, &block) if block cache = instance_variable_get(ivar_name) || instance_variable_set(ivar_name, {}) hash = args.hash if cache.has_key?(hash) cache[hash] else cache[hash] = super(*args) end end end prepend mod end |