mastermind@lemm.ee to Programmer Humor@lemmy.ml · 1 year agowhy not a,b or x,y?lemm.eeimagemessage-square35fedilinkarrow-up1115arrow-down19
arrow-up1106arrow-down1imagewhy not a,b or x,y?lemm.eemastermind@lemm.ee to Programmer Humor@lemmy.ml · 1 year agomessage-square35fedilink
minus-squaredark_stang@beehaw.orglinkfedilinkarrow-up0·1 year agox is used for map, filter, etc. a and b are used for sorts, comparisons and merges. y might be used if I’m doing multiple lambda expressions (but that means I’m in a bad place already). I have no idea why, but these are firm rules in my brain.
minus-squareDogMuffins@discuss.tchncs.delinkfedilinkarrow-up1·1 year agoI’ve gotten used to using the singular form as in… records.filter((record) => …) Not saying this way is better but it works for me.
x is used for map, filter, etc. a and b are used for sorts, comparisons and merges. y might be used if I’m doing multiple lambda expressions (but that means I’m in a bad place already). I have no idea why, but these are firm rules in my brain.
I’ve gotten used to using the singular form as in…
records.filter((record) => …)
Not saying this way is better but it works for me.