rubinius/rubinius

View on GitHub
core/true.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TrueClass
  def &(other)
    !!other
  end

  def ^(other)
    !other
  end

  def |(other)
    true
  end

  def to_s
    "true"
  end

  def inspect
    # Call #to_s rather than alias it so that people can change #to_s if they
    # wish. Yes, sounds dumb.
    to_s
  end
end

TRUE = true