instance method
[]
Ruby on Rails 5.2.8.1
Since v3.0.20Signature
[](*args)
No documentation comment.
Parameters
-
argsrest
Source
# File activesupport/lib/active_support/core_ext/string/output_safety.rb, line 179
def [](*args)
if args.size < 2
super
elsif html_safe?
new_safe_buffer = super
if new_safe_buffer
new_safe_buffer.instance_variable_set :@html_safe, true
end
new_safe_buffer
else
to_str[*args]
end
end
Defined in activesupport/lib/active_support/core_ext/string/output_safety.rb line 179
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::SafeBuffer