Remix.run Logo
f1shy 4 days ago

This is more or less the reason why bool is not recommended as a type, instead use a enums which add semantic value

QuantumNomad_ 4 days ago | parent | next [-]

    enum DoesUserWantToSave {
      Yes,
      No,
      Cancel,
    }
:p
layer8 4 days ago | parent | prev [-]

This was well known 20+ years ago: https://thedailywtf.com/articles/what_is_truth_0x3f_