karolherbst / Gamekeeper-Framework

Library for hooking up game stores and merging them into one single library
GNU Lesser General Public License v2.1
2 stars 0 forks source link

utils/stringutils.h: find faster implementations for toString and toType #90

Open karolherbst opened 10 years ago

karolherbst commented 10 years ago

currently we are using a mix of the c++ standard lib and boost::lexical_cast. I know there are more efficient and faster ways to do this kind of stuff (preferable with asm paths for x86/arm).

An analysis about speed and memory consumption of other implementations/libraries would be a nice base to start with.