UTL

Collection of self-contained header-only libraries for C++17

View on GitHub

Names reserved by UTL implementation

<- back to README.md

Due to the header-only nature of the library, all internal identifiers can be accessed from outside.

Identifiers that are not a part of the public interface are considered implementation identifiers. All such identifiers follow a standardized naming convention that aims to reduce the probability of accidental name collisions.

Reserved Local Identifiers

All identifiers residing inside a module namespace and prefixed with _:

utl::<module_name>::_<local_identifier_name>

Reserved Global Identifiers

All global identifiers prefixed with utl_:

utl_<global_identifier_name>