checkarg
checkarg copied to clipboard
Ability to chain validations
Describe the solution you'd like
def doSomethingValid(negative_number: int, positive_number: int):
Number.is_lower(negative_number, 0).is_greater_or_equals(positive_number, 0)
Note: might not the possible