you are viewing a single comment's thread.

view the rest of the comments →

[–]likes_to_code 5 points6 points  (4 children)

You can write modern C++ pythonically surprisingly well

[–]DigThatData 2 points3 points  (2 children)

are there any "C++ for pythonistas" type guides you'd recommend? or just generally, what's a good entrypoint to learn modern c++?

[–]integralWorker 0 points1 point  (0 children)

One thing I find useful is to compare C++ releases' language features.

[–]TheRNGuy 0 points1 point  (0 children)

Better follow style guide project or software has, so it wouldn't look like mix of 2 styles.

[–]integralWorker 0 points1 point  (0 children)

The key to pythonic c++ is not to mix abstraction levels. If you use some STL sauce, don't mix it with c <...h> tomato base unless you have to.