Go to file
yyc12345 c91df3a74f fix: fix issues.
- add chars format argument for floating point overload of ParserHelper::TryParse.
- add overload for ParserHelper::Parse to match with ParserHelper::TryParse.
- fix the issue that we can not specify c++ standard in command line when configuring project.
- update documentation for changes.
- change following function's argument from const yycc_char8_t* to const yycc_u8string_view&.
	- StringHelper::Split, StringHelper::SplitView
	- StringHelper::Lower, StringHelper::Upper
	- StringHelper::Join
	- StringHelper::Replace
- use iterator type, not std::vector<yycc_u8string> for specialized StringHelper::Join to have more wide usage.
2024-08-26 11:58:20 +08:00
.github/workflows refactor: bring char8_t to this library. 2024-06-26 21:04:56 +08:00
cmake chore: update build script. 2024-07-22 13:56:00 +08:00
doc fix: fix issues. 2024-08-26 11:58:20 +08:00
script doc: update build script and documentation. 2024-08-14 17:26:38 +08:00
src fix: fix issues. 2024-08-26 11:58:20 +08:00
testbench fix: fix issues. 2024-08-26 11:58:20 +08:00
.gitattributes fix: fix linux build issue 2024-07-22 22:41:10 +08:00
.gitignore chore: switch to CMake build system. 2024-05-29 23:11:52 +08:00
CMakeLists.txt fix: fix fatal error of ExceptionHelper in x86 environemnt. 2024-07-31 20:32:11 +08:00
LICENSE doc: update README 2024-07-13 22:50:37 +08:00
README.md doc: update build script and documentation. 2024-08-14 17:26:38 +08:00

YYC Commonplace

YYC Commonplace, or YYCCommonplace (abbr. YYCC) is a static library specifically resolving my requirements in C++ and Windows scope.

Usage

For more usage about this library, please build documentation of this project via Doxygen and read it.

And I also highly recommend that you read documentation first before writing with this library.

However, the documentation need CMake to build and you may don't know how to use CMake in this project. So as the alternative, you also can browse the raw Doxygen documentation file: doc/src/intro.dox for how to build this project (including documentation) first.

Build

This project require at least CMake 3.23 to build. We suggest that you only use stable version (tagged commit). The latest commit may still work in progress and not stable.

See documentation for how to build this project.