merari42@lemmy.world to Programmer Humor@programming.dev · 3 months agoI want a programming language that supports German style composite wordslemmy.worldimagemessage-square127linkfedilinkarrow-up1866arrow-down17cross-posted to: ich_iel@feddit.org
arrow-up1859arrow-down1imageI want a programming language that supports German style composite wordslemmy.worldmerari42@lemmy.world to Programmer Humor@programming.dev · 3 months agomessage-square127linkfedilinkcross-posted to: ich_iel@feddit.org
minus-squareaffiliate@lemmy.worldlinkfedilinkarrow-up7·3 months agoi will never forgive them for making the pointer type be T* instead of &T. most confusing thing ever. don’t even get me started on C++ making T& the reference type and then making T&& be something other than the double reference type.
minus-squarexthexder@l.sw0.comlinkfedilinkarrow-up5·3 months agoI always thought T&& made sense as a movable reference. In order to move something, you need to change where the reference points, so conceptually you need a reference to the original reference to update it. (Effectively a double reference)
i will never forgive them for making the pointer type be
T*
instead of&T
. most confusing thing ever.don’t even get me started on C++ making
T&
the reference type and then makingT&&
be something other than the double reference type.I always thought
T&&
made sense as a movable reference. In order to move something, you need to change where the reference points, so conceptually you need a reference to the original reference to update it. (Effectively a double reference)