Strict and relaxed boolean operators

you could possibly use it to perform an action that doesn’t require the value

value = get_some_value()
value && perform_some_action_only_if_value_is_not_nil()
value

something like this, I guess