6 ms·
Is typing `combine(t1, t2)` instead of `t1 + t2` the largest issue your experts have to productivity? Most folks complain about a variety of factors beyond typi
by kf6nux 5y ago
Is typing `combine(t1, t2)` instead of `t1 + t2` the largest issue your experts have to productivity? Most folks complain about a variety of factors beyond typing speed.
- preseinger 5y agoDefinitely not. The former is in general preferable to the latter, though, because it makes it a little more clear that arbitrary computation is occurring.
- erik_seaberg 5y agoI picked up Lisp early on, and don’t care that much about t1 + t2 vs. (+ t1 t2) vs. t1.add(t2). But without method overloading and generics, changing the static type of anything requires editing everything.
- kf6nux 5y agoGood points. I accidentally replied to yours. I had intended to reply to preseinger.
- andi999 5y agoWell for math matrix formulas it gets difficult to read. Like (A+B)/2 *C*(A-B)/2 is better than mulMat(skalardivide(addMat(A, B), 2),mulMat(C,skalardivide(subMat(A,B),2)))