refactor(string): refactor string conversion and turning off default parsing options such as auto detect base

This commit is contained in:
2024-11-16 22:21:31 +08:00
parent 1c0c93ee25
commit f6f696d5a7
3 changed files with 800 additions and 969 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1239,8 +1239,8 @@ public:
/**
* Converts a string into a boolean value.
*
* - 1, "true", "True", "TRUE" and non-zero integers become true.
* - 0, "false", "False", "FALSE" and unparsable values become false.
* - "True" and non-zero integers become true.
* - "False" and unparsable values become false.
*
* @return The boolean value.
*/