gxg-web-client/gxg/core/true.rb
2021-11-16 08:58:51 -08:00

25 lines
297 B
Ruby

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