class Psych::Visitors::Visitor
Constants
- DISPATCH
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/psych-5.2.3/lib/psych/visitors/visitor.rb, line 12 def self.dispatch_cache Hash.new do |hash, klass| hash[klass] = :"visit_#{klass.name.gsub('::', '_')}" end.compare_by_identity end
@api private
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/psych-5.2.3/lib/psych/visitors/visitor.rb, line 5 def accept target visit target end