module MemoAttr

Private Class Methods

included(mod) click to toggle source
# File lib/jobshop/support/memo_attr.rb, line 7
def self.included(mod)
  mod.extend(ClassMethods)
end

Private Instance Methods

__memoized() click to toggle source
# File lib/jobshop/support/memo_attr.rb, line 3
def __memoized
  @__memoized ||= {}
end