Search Results

2
votes

Passing a Python array to a C++ vector using Swig

It depends on if your function is already written and cannot be changed, in which case you may need to check Swig docs to see if there is already a typemap from PyList to std::vector (I think there …
1
vote

What real life bad habits has programming given you?

A couple times I've referred to taking out the garbage as "deleting the trash." I've also merge sorted by length (luckily they're all black so there was no need to make the sort more complex) all …
13
votes

Why would anybody use C over C++?

Because they're writing a plugin and C++ has no standard ABI. …
2
votes

What is the best way to replace or substitute if..else if..else trees in programs?

The example given in the question is trivial enough to work with a simple switch. The problem comes when the if-elses are nested deeper and deeper. They are no longer "clear or easy to read," (as s …