Data type and byte order conversions for NSData using the STL
We’ve been spoiled working in Python’s numpy array library. Converting data types or byte order for numeric data in a numpy array is trivial (thanks to the work of numpy’s authors of course). When we’re in Objective-C land, the inability to change data types or byte orders on NSData instances is frustrating. So we’ve written [...]