1
0

doc: add doc for moved files

This commit is contained in:
2025-10-07 18:49:02 +08:00
parent c48e79753d
commit ab8489c377
4 changed files with 50 additions and 15 deletions

View File

@@ -4,15 +4,15 @@
#include <expected>
/**
* @brief The namespace providing environment variable operations.
* @brief The namespace providing runtime environment operations.
* @details
* When I programming with Rust, I was astonished that
* Rust standard library have so much robust environment variable operations.
* Oppositly, C++ STL still lake in this even in today.
*
* The functions manipulating environment variable is different in different OS.
* I create this namespace inspired from Rust standard library
* to glue all these things up and make a uniform interface.
* Rust standard library have so much robust environment-related operations,
* such as environment variable operations, current program infos and etc.
* Oppositly, C++ STL are still lack in this even in today.
* So I create this namespace to glue all these things up,
* according to different operating systems, and make a uniform interface.
*/
namespace yycc::env {