class JMESPath::Nodes::ArrayProjection
Public Instance Methods
Source
# File lib/jmespath/nodes/projection.rb, line 46 def extract_targets(target) target.to_ary if target.respond_to?(:to_ary) end
Source
# File lib/jmespath/nodes/projection.rb, line 50 def fast_instance FastArrayProjection.new(@target.optimize, @projection.optimize) end