# File lib/uber/builder.rb, line 11
      def call(context, *args)
        each do |block|
          klass = block.(context, *args) and return klass # Uber::Value#call()
        end

        context
      end