Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Why do you say (3) does not exist? C++ has it (and it's one of the main reason why, at the moment, I wouldn't use Rust to do the things I do).


sort by: page size:

I think that is his point, he thinks Rust and C++ cannot do this. But is the default in C++ and well done in Rust.

So it's absent from every language but Rust?

All of those languages have a runtime that enables this sort of thing. That's not the case in Rust. It's a bit of an unfair thing to knock it for, given the restrictions.

You mean there is no compile time way to accomplish that? Doesn't sound very Rust-like.

Nope! Rust doesn’t have function overloading like C++. What would that code look like in C++?

(Rust has operator overloading - but that’s not the same thing).


This is not an unique feature today, you can do the same in D and Rust and even C++14, I think.

Rust being the popular example. But even C++ has this with std::optional, for example.

You can do it non-properly in Rust as well, e.g. using unwraps, etc. but even then it's still way better than an UB-ridden component of a C++ codebase.

TIL Rust doesn't have function overloading. But actually not sure whether this is a good or bad thing.

No. Rust does not have the equivalent of Object or void *.

You are mistaken about rust. I can't think of a construct that is not an expression.

I don't believe that it being written in Rust is a feature. The language it's written in is just an implementation detail.

The fact that there are options is my point: it's ambiguous. That's the reason there is no implementation for it in the std lib. You're absolutely free in Rust to define your own though.

This feels like a personal statement of familiarity rather than looking ahead to designing a language that has to be taught to next generation of software engineers. AFAIK, the only operator Rust introduces over C++ is the try operator (aka. ?) and match statements. Furthermore I can't imagine how someone could prefer

    &&auto my_closure = [&](int x, int y) { return x + y }
to just

    let my_closure = |x: int, y: int| { x + y }
C++ is the one that tries hard to standout.

But the rust story is basically the same as the C story, which is use something other than the normal operators to do your arithmetic.

There are tons of checked_add()_sub/_mul macros or functions floating around. At least in C++ one could override the global operators if needed.


Rust has very limited higher-order functions. True functional-style HOFs require passing around arbitrarily-sized heap closures, which doesn't work with rust's memory model. You cannot, for example, have a vector of functions in rust. You can sort of get it with boxed closures, but it's very inconvenient compared to in any of the languages I mentioned. That's why I didn't include it.

I've seen it in Python. Not in Rust, because I haven't worked with Rust.

This is where Rust's decision to keep such functions out of the standard library entirely starts to look pretty smart.

> Rust doesn't have variadic functions

By design or because nobody has implemented them, yet?

next

Legal | privacy