summaryrefslogtreecommitdiff
path: root/lib/pry/config/memoized_value.rb
blob: 670f45b91fb888e17df9a3c11e7bb1479cc540bf (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
29
30
# frozen_string_literal: true

class Pry
  class Config
    # 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::Config::MemoizedValue.new { num += 1 }
    #   value.call # => 20
    #   value.call # => 20
    #   value.call # => 20
    #
    # @api private
    # @since ?.?.?
    # @see Pry::Config::LazyValue
    class MemoizedValue
      def initialize(&block)
        @block = block
        @call = nil
      end

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