Skip to content
  • Yorick Peterse's avatar
    Add Boolean.true? and .false?, and remove .not · 715aff37
    Yorick Peterse authored
    The new methods Boolean.true? and Boolean.false? make code easier to
    read compared to using Boolean.not. For example, code like this isn't
    clear:
    
        some_boolean_value.not
    
    On the other hand, this is much better:
    
        some_boolean_value.false?
    715aff37