Is there is a way/trick to pass std::set to a C API which expects C Array?
|
feedback
|
|
No, but you could fill an array with your set contents pretty quickly. For example, assuming mySet is a set of the same type as YOUR_TYPENAME:
Then just pass arr into the C API. | |||||||||||||||||||
feedback
|
|
Not directly, but you can first convert the set to a vector (called, say, | |||
|
feedback
|
|
For completeness, the vector alternative to the currently accepted answer would look like this:
I prefer this style because:
| |||
|
feedback
|