class Symbol

Educate Ruby 1.8.7 about the #empty? method.

Educate Ruby 1.8.7 about the #empty? and #length methods.

Public Instance Methods

empty?() click to toggle source
# File lib/asciidoctor/core_ext/1.8.7/symbol/empty.rb, line 3
def empty?
  to_s.empty?
end
length() click to toggle source
# File lib/asciidoctor/core_ext/1.8.7/symbol/length.rb, line 3
def length
  to_s.length
end