Sha256: 4678be87e810812f5a63eadc4f594f840fdcda2c3ffe3de909c944d6387806a6

Contents?: true

Size: 1.05 KB

Versions: 41

Compression:

Stored size: 1.05 KB

Contents

module Nanoc::Int
  # Holds a value that might be generated lazily.
  #
  # @api private
  class LazyValue
    include Nanoc::Int::ContractsSupport

    # @param [Object, Proc] value_or_proc A value or a proc to generate the value
    def initialize(value_or_proc)
      @value = { raw: value_or_proc }
    end

    # @return [Object] The value, generated when needed
    def value
      if @value.key?(:raw)
        value = @value.delete(:raw)
        @value[:final] = value.respond_to?(:call) ? value.call : value
        @value.__nanoc_freeze_recursively if frozen?
      end
      @value[:final]
    end

    contract C::Func[C::Any => C::Any] => self
    # Returns a new lazy value that will apply the given transformation when the value is requested.
    #
    # @yield resolved value
    #
    # @return [Nanoc::Int::LazyValue]
    def map
      Nanoc::Int::LazyValue.new(-> { yield(value) })
    end

    contract C::None => self
    # @return [void]
    def freeze
      super
      @value.__nanoc_freeze_recursively unless @value[:raw]
      self
    end
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
nanoc-4.7.9 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.8 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.7 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.6 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.5 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.4 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.3 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.2 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.1 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.7.0 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.6.4 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.6.3 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.6.2 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.6.1 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.6.0 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.5.4 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.5.3 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.5.2 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.5.1 lib/nanoc/base/entities/lazy_value.rb
nanoc-4.5.0 lib/nanoc/base/entities/lazy_value.rb