| 123456789101112131415161718192021 |
- $#include "StringUtils.h"
- bool ToBool(const String source);
- float ToFloat(const String source);
- int ToInt(const String source);
- unsigned ToUInt(const String source);
- Color ToColor(const String source);
- IntRect ToIntRect(const String source);
- IntVector2 ToIntVector2(const String source);
- Quaternion ToQuaternion(const String source);
- Rect ToRect(const String source);
- Vector2 ToVector2(const String source);
- Vector3 ToVector3(const String source);
- Vector4 ToVector4(const String source, bool allowMissingCoords = false);
- String ToString(void* value);
- String ToStringHex(unsigned value);
- bool IsAlpha(unsigned ch);
- bool IsDigit(unsigned ch);
|