logoalt Hacker News

Pay08today at 7:05 AM2 repliesview on HN

Errors that you can recover from. I simply appreciate the added flexibility. Have you ever tried making a container of arbitrary types in C++?


Replies

SuperV1234today at 9:03 AM

You cannot do anything meaningful with a container of arbitrary types, it's just bad design.

If you want to apply the same operation on all of them, then they share some API commonality -- therefore you can use polymorphism or type erasure.

If they don't, you still need to know what types they are -- therefore you can use `std::variant`.

If they really are unrelated, why are you storing them together in the same container? Even then, it's trivial in C++: `std::vector<std::any>`.

lmmtoday at 7:24 AM

If C++ was the only static type system I'd experienced, I would also think it was a bad idea. Have you ever used an ML-family language?

show 1 reply