• vext01@lemmy.sdf.org
    link
    fedilink
    arrow-up
    1
    ·
    41 minutes ago

    But then you realise that the types of 10 constituent fields don’t implement Eq, PartialEq…

  • flying_gel@lemmy.world
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    2 hours ago

    I do appreciate how newer C++ standards have made these kinds of things a lot easier too.

    Define all comparison operators with just one one line using C++20

    auto operator<=>(const ClassName&) const = default;

  • Ashelyn@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    18
    ·
    3 hours ago

    Is that because it’s that simple, or just that the boilerplate is pre-written in the standard library (or whatever it’s called in rust)?

    • Rusty 🦀 Femboy 🏳️‍🌈@lemmy.blahaj.zoneOP
      link
      fedilink
      English
      arrow-up
      8
      ·
      2 hours ago

      Yes, it is that simple. In Rust if you have a structure Person and you want to allow testing equality between instances, you just add that bit of code before the struct definition as follows:

      #[derive(PartialEq, Eq)]
      struct Person {
          name: String,
          age: u32,
      }
      

      In Rust, PartialEq and Eq are traits, which are similar to interfaces in Java. Manually implementing the PartialEq trait in this example would be writing code that returns something like a.name == b.name && a.age == b.age. This is pretty simple but with large data structures it can be a lot of boilerplate.

      There also exist other traits such as Clone to allow creating a copy of an instance, Debug for getting a string representation of an object, and PartialOrd and Ord for providing an ordering. Each of these traits can be automatically implemented for a struct by adding #[derive(PartialEq, Eq, Clone, Debug, PartialOrd, Ord)] before it.

    • mvirts@lemmy.world
      link
      fedilink
      arrow-up
      23
      ·
      3 hours ago

      It’s because people put in the hard work of writing amazing macros instead of baking code reuse into the type system itself 😁 I’m a rust noob and I love the derive macro.

    • Dhs92@programming.dev
      link
      fedilink
      arrow-up
      6
      ·
      3 hours ago

      Derive macros are a godsend. There’s macros to automatically implement serialization as well. Basically a Trait that can automatically be implemented when derived

      • Dunstabzugshaubitze@feddit.org
        link
        fedilink
        arrow-up
        4
        ·
        2 hours ago

        i’ve only read about rust, but is there a way to influence those automatic implementations?

        equality for example could be that somethings literally point to the same thing in memory, or it could be that two structs have only values that are equal to each other

        • Wappen@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          2 hours ago

          Equality in rust is value equality per default, that’s what these traits are for. If you want to check pointer equality you’d use the std::ptr::eq function to check if two pointers are equal, which is rather rare in practice. You can also implement the PartialEq trait yourself if you need custom equality checks.

  • Gonzako@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    3 hours ago

    I’ve only had to implement equality in C# but that didn’t seem that hard of a problem. you just expand the operator = function

    • copygirl@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      19 minutes ago

      Then you should also override Equals(object), GetHashCode, and implement IEquatable<T>.

      Thankfully a lot of the usual boilerplate code can be avoided using a record class or struct:

      public record Person(string Name, uint Age);
      
      • Deckweiss@lemmy.world
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        edit-2
        14 minutes ago

        My IDE can do that for me. And it was able to do that pre AI boom. Yes, the code ends up more verbose, but I just collapse it.

        So from a modern dev UX perspective, this shouldn’t be a major difference.

      • GetOffMyLan@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        30 minutes ago

        I just use the HashCode class and compare the results.

        Pretty sure there’s a source generator for it as well nowadays.