# File lib/grape_entity/exposure/nesting_exposure.rb, line 31
        def value(entity, options)
          new_options = nesting_options_for(options)
          output = OutputBuilder.new

          normalized_exposures(entity, new_options).each_with_object(output) do |exposure, out|
            exposure.with_attr_path(entity, new_options) do
              result = exposure.value(entity, new_options)
              out.add(exposure, result)
            end
          end
        end