little_ferris@programming.dev to Rust@programming.devEnglish · edit-220 days agoWhat are some mind blowing Rust tricks?message-squaremessage-square52fedilinkarrow-up167arrow-down12file-text
arrow-up165arrow-down1message-squareWhat are some mind blowing Rust tricks?little_ferris@programming.dev to Rust@programming.devEnglish · edit-220 days agomessage-square52fedilinkfile-text
If we were to create a Rust version of this page for Haskell, what cool programming techniques would you add to it?
minus-squareInfernaltoast@programming.devlinkfedilinkarrow-up5·edit-220 days agoYou can manually implement PartialEq and Eq on an Enum that implements Hash to manually determine how the hashmap keys override/collide with one another.
You can manually implement PartialEq and Eq on an Enum that implements Hash to manually determine how the hashmap keys override/collide with one another.