Methods
- A
- B
- D
- T
Constants
AS_JSON | = | ActiveSupport::JSON::Variable.new('false').freeze |
Instance Public methods
Source: show
# File activesupport/lib/active_support/json/encoding.rb, line 170 def as_json(options = nil) AS_JSON end
false
is blank:
false.blank? # => true
Source: show
# File activesupport/lib/active_support/core_ext/object/blank.rb, line 55 def blank? true end
false
is not duplicable:
false.duplicable? # => false false.dup # => TypeError: can't dup FalseClass
Source: show
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 46 def duplicable? false end
Source: show
# File activesupport/lib/active_support/core_ext/object/to_param.rb, line 21 def to_param self end