/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-05-13 * Changed: 2024-09-09 * * */ #ifndef LS_STD_LS_STD_BOXING_HPP #define LS_STD_LS_STD_BOXING_HPP /* * @doc: package(name: 'boxing') * @doc: boxing.description('This package provides functionalities for wrapping primitive datatypes (boolean, double, float, int, long, string). Wrapping those types would enable a developer to provide string representations, or parsing from strings to convert them back into their primitive forms. Additionally, these boxing types come with a great selection of operators and convenient functions.') * */ #include #include #include #include #include #include #endif