It’s getting more and more unhinged on LinkedIn.

  • Jocarnail@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    9 days ago

    I’m still learning Rust coming from Python and R and honestly point 2 and 3 are not even that bad. Sure I have been bashing my head against some corners, and the lack of OOP was somewhat unexpected, but imho the language really helps you think about what you are doing.

    • sugar_in_your_tea@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      ·
      8 days ago

      the lack of OOP

      Rust absolutely has OOP, that’s what Traits are for. It just doesn’t have classical inheritance, so you structure your patterns a bit differently.

      That said, I lean more into functional-inspired style anyway, which tends to work pretty well w/ Rust.

        • sugar_in_your_tea@sh.itjust.works
          link
          fedilink
          arrow-up
          0
          ·
          6 days ago

          At its core, OOP is just commingling data and operations, whereas FP is separating data from operations on data. I’m not an expert at Haskell (I cut my FP teeth on Lisp), but that’s essentially what typeclasses look like to me.

          The Rust book has a section on OOP, and the main thing to remember is that Rust solves OOP through composition instead of inheritance. Rust doesn’t have inheritance in any meaningful way, but it can solve problems in a similar way as classical OOP.

          • beleza pura@lemmy.eco.br
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            6 days ago

            i would strongly disagree with that characterization of both fp and oo. classifying rust as oo weakens it imo, and the fact that you can easily solve all the problems oo solves in rust, as your linked document shows, is not proof rust is oo, but rather that oo is unnecessary to solve those problems

            object orientation is classes done wrong. typeclasses (and traits) are classes done right