is it good or bad practice to provide other names ...
# codingconventions
h
is it good or bad practice to provide other names for properties in the following way? is it considered clutter?
Copy code
fun Double.squareRoot() = pow(0.5)
fun Double.sqrt() = squareRoot()
s
IMHO it’s clutter
5
pick one canonical name to do something, don’t confuse other folks with multiple options since that usually implies some kind of difference
4
h
alright thanks
i love your logic. it's probably more important than pretty code
👍 1