class Object

Public Instance Methods

blank?() click to toggle source
# File lib/significance/core_ext/object.rb, line 3
def blank?
  respond_to?(:empty?) ? empty? : !self
end
keep_significant() click to toggle source
# File lib/significance/core_ext/object.rb, line 16
def keep_significant
  respond_to?(:replace) ? replace(significant) : significant
end
significance() click to toggle source
# File lib/significance/core_ext/object.rb, line 24
def significance
  significant? ? significant : nil
end
significant() click to toggle source
# File lib/significance/core_ext/object.rb, line 12
def significant
  self
end
significant!() click to toggle source
# File lib/significance/core_ext/object.rb, line 20
def significant!
  keep_significant
end
significant?() click to toggle source
# File lib/significance/core_ext/object.rb, line 8
def significant?
  !blank? and significant == self
end
significant_significance() click to toggle source
# File lib/significance/core_ext/object.rb, line 28
def significant_significance
  significant.significance
end
Also aliased as: sigsig
significant_significance?() click to toggle source
# File lib/significance/core_ext/object.rb, line 32
def significant_significance?
  significant_significance.significant?
end
Also aliased as: sigsig?
sigsig()
sigsig?()