A lot of formulations use variable = get_variable(...) or expression = get_expression(...) and especially when the ... refers to type parameters like T, U, V, it's hard while skimming through to know what each variable or expression or whatever actually is.
I would prefer a naming convention like descriptive_name_var or _expr or _const used across the board.
A lot of formulations use
variable = get_variable(...)orexpression = get_expression(...)and especially when the...refers to type parameters likeT,U,V, it's hard while skimming through to know what each variable or expression or whatever actually is.I would prefer a naming convention like
descriptive_name_varor_expror_constused across the board.