you are viewing a single comment's thread
view the rest of the comments
[–] 7 points 2 years ago (2 children)

In Rust, making something copyable is always explicit. I like that a lot.

  • source
  • parent
  • hideshow 4 child comments
  • [–] 3 points 2 years ago (1 child)

    Copy has a very different meaning between the two languages. In rust the equivalent of a c++ copy is a clone() call for anything non trivial

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago (2 children)
  • [–] 2 points 2 years ago (1 child)

    @BatmanAoD @Miaou It is just what you are used to.
    In C++ everything is a copy. Sometimes the compiler optimizes it away. clang-tidy may help. Having a clone() is very C-like.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years ago* (last edited 2 years ago)

    That's a common idiom but the default behaviour is still implicit copy, which, with VLAs and no smart pointers, makes things arguably worse than in c++

  • source
  • parent