summaryrefslogtreecommitdiff
path: root/lib/pry/configuration/memoized_value.rb
blob: 3db85f2652e202573a46f61974414d30a37ec29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Pry
  class Configuration
    # MemoizedValue is a Proc (block) wrapper. It is meant to be used as a
    # configuration value. Subsequent `#call` calls return the same memoized
    # result.
    #
    # @example
    #   num = 19
    #   value = Pry::Configuration::MemoizedValue.new { num += 1 }
    #   value.call # => 20
    #   value.call # => 20
    #   value.call # => 20
    #
    # @api private
    # @since ?.?.?
    # @see Pry::Configuration::LazyValue
    class MemoizedValue
      def initialize(&block)
        @block = block
        @call = nil
      end

      def call
        @call ||= @block.call
      end
    end
  end
end