Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Main --> Dev#238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
schmouk merged 19 commits intodevfrommain
Oct 21, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
19 commits
Select commitHold shift + click to select a range
e5ca564
Merge pull request #226 from schmouk/dev
schmoukJul 16, 2025
2ef4e12
#227-create _config.yml file
schmoukJul 16, 2025
bcd2bbc
#228-modify README.md
schmoukJul 16, 2025
fa7fc5f
#228-modify README.md
schmoukJul 16, 2025
f5cc32a
#228-modify README.md
schmoukJul 16, 2025
390fa39
#228-modify README.md
schmoukJul 16, 2025
9ef6ffb
#230-add .gitattributes file at root
schmoukJul 16, 2025
3914c12
#228-modify README.md
schmoukJul 16, 2025
a3af07e
#228-modify README.md
schmoukJul 16, 2025
9f7733a
#224-generate doxygen documentation
schmoukJul 16, 2025
ff9268b
#228-modify README.md
schmoukJul 16, 2025
7d02c29
#228-modify README.md
schmoukJul 16, 2025
badfbfb
#228-modify README.md
schmoukJul 16, 2025
afadeea
#228-modify README.md
schmoukJul 16, 2025
ca5fea5
#204-create PCS documentation
schmoukJul 16, 2025
abea7a0
#232-Release version 1.0.2
schmoukSep 26, 2025
7b3b884
#235-fix README.md typos
schmoukOct 21, 2025
e3f163c
#236-add banner image for library
schmoukOct 21, 2025
2fa67bf
#235-fix README.md typos
schmoukOct 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions.gitattributes
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
*.html -linguist-detectable
*.css -linguist-detectable
*.js -linguist-detectable
20 changes: 12 additions & 8 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
# Library cpp-strings
[![license](http://img.shields.io/github/license/schmouk/cpp-strings.svg?style=plastic&labelColor=blueviolet&color=lightblue)](https://github.com/schmouk/cpprandlib/license) [![Latest release](http://img.shields.io/github/release/schmouk/cpp-strings.svg?style=plastic&labelColor=blueviolet&color=success)](https://github.com/schmouk/cpprandlib/releases) [![code_coverage](https://img.shields.io/badge/code_coverage-100%25-success?style=plastic&labelColor=blueviolet)]() [![tests](https://img.shields.io/badge/tests-passing-success?style=plastic&labelColor=blueviolet)]()
<img src="banner-image.jpg" width="512" height="454" alt="Library banner">

github repository: [https://github.com/schmouk/pythonic-cpp-strings](https://github.com/schmouk/pythonic-cpp-strings)
[![license](http://img.shields.io/github/license/schmouk/pythonic-cpp-strings.svg?style=plastic&labelColor=blueviolet&color=lightblue)](https://github.com/schmouk/pythonic-cpp-strings/license) [![Latest release](http://img.shields.io/github/release/schmouk/pythonic-cpp-strings.svg?style=plastic&labelColor=blueviolet&color=success)](https://github.com/schmouk/pythonic-cpp-strings/releases) [![code_coverage](https://img.shields.io/badge/code_coverage-100%25-success?style=plastic&labelColor=blueviolet)]() [![tests](https://img.shields.io/badge/tests-passing-success?style=plastic&labelColor=blueviolet)]()

What if c++ stringswhere as easy to use as Python strings?
###What if c++ stringswere as easy to use as Python strings?

Let's just use c++ strings as are Python ones, with same API or as similar API as possible.
Library **cpp-strings** is fully templated. Just download header file `cppstrings.h` and put it anywhere in your project. Notice: all of its stuff is declared and defined in namespace `pcs` - which stands for **P**ythonic **C**++ **S**trings.
Expand All@@ -12,7 +11,9 @@ Library **cpp-strings** is fully templated. Just download header file `cppstring
* Class `pcs::CppString` specializes the templated class with `char` characters.
* Class `pcs::CppWString` specializes the templated class with `wchar_t` characters.

**cpp-strings** is implemented with the currently most recent c++ standard available with gcc, clang and msvc c++ compilers, i.e. standard **c++20**.
The cpp-strings **HTML documentation** is available in subdirectory `cpp-strings/html`. Click on file `index.html` there from your local file manager to browse its content.

Library **cpp-strings** is implemented with the currently most recent c++ standard available with gcc, clang and msvc c++ compilers, i.e. standard **c++20**.

* directory `cpp-strings` contains the header file `cppstring.h`.
This is the header file to include in your projects.
Expand All@@ -29,6 +30,9 @@ or option `-std=c++2a` for clang and gcc (v. 9 and earlier);
If you want to run the unitary tests, well, use the last version of Visual Studio (i.e. VS 2022, by July 2025). The Community free version will truly be fine.
The vcproject associated with the unit tests in **cpp-strings** is already configured to use the option flag `/std:c++latest` since the implemented code uses a very few but very useful c++23 goodies.

github repository: [https://github.com/schmouk/pythonic-cpp-strings](https://github.com/schmouk/pythonic-cpp-strings)
pythonic-cpp-strings github web pages: [https://schmouk.github.io/pythonic-cpp-strings/](https://schmouk.github.io/pythonic-cpp-strings/)


---
## License
Expand DownExpand Up@@ -71,9 +75,9 @@ This `.cpp` file is a great place to see **cpp-strings** code in action. Each st


---
## Latest Release - Release 1.0 (1.0.0.224) 2025/07
## Latest Release - Release 1.0 (1.0.2.232) 2025/07

The coding of this project started by March 2023 and had been put in standby mode for some months - no time to work on it. The very first release is now availble (since July 2025), as **Release 1.0**.
The coding of this project started by March 2023 and had been put in standby mode for some months - no time to work on it. The very first release is now availble (since July 2025), as **Release 1.0.2**.

This release has been fully tested. Code coverage is 100%.

Expand All@@ -96,7 +100,7 @@ N.B. "*planned for a next release*" does not imply that a fixed date is planned
---
## Documentation

The **cpp-strings** HTML documentation is availablehere: [html/index.html](html/index.html).
The **cpp-strings** HTML documentation is availablein subdirectory `cpp-strings/html`. Click on file `index.html` there from your local file manager to browse its content.

It has then been produced with the great utility **doxygen** developed by Vicente Hernando (the doxygen Github repository can be accessed [here](https://github.com/doxygen/doxygen), and the utility can be downloaded from there: [https://www.doxygen.nl/download.html](https://www.doxygen.nl/download.html)).

Expand Down
3 changes: 3 additions & 0 deletions_config.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
theme: jekyll-theme-slate
show_downloads: true

Binary file addedbanner-image.jpg
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletioncpp-strings/html/doxygen.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2442,7 +2442,7 @@ details[open]>summary::before {


html {
--timestamp: 'Wed Jul16 2025'
--timestamp: 'Thu Jul17 2025'
}
span.timestamp { content: ' '; }
span.timestamp:before { content: var(--timestamp); }
Expand Down
7 changes: 5 additions & 2 deletionscpp-strings/html/doxygen_crawl.html
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -150,9 +150,12 @@
<a href="functions_func.html"/>
<a href="hierarchy.html"/>
<a href="index.html"/>
<a href="index.html#autotoc_md2"/>
<a href="index.html#autotoc_md1"/>
<a href="index.html#autotoc_md3"/>
<a href="index.html#autotoc_md5"/>
<a href="index.html#autotoc_md4"/>
<a href="index.html#autotoc_md6"/>
<a href="index.html#autotoc_md7"/>
<a href="index.html#autotoc_md9"/>
<a href="namespacemembers.html"/>
<a href="namespacemembers_func.html"/>
<a href="namespacemembers_type.html"/>
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp