ls-std-boxing.hpp 939 B

12345678910111213141516171819202122232425
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-13
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_LS_STD_BOXING_HPP
  10. #define LS_STD_LS_STD_BOXING_HPP
  11. /*
  12. * @doc: package(name: 'boxing')
  13. * @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.')
  14. * */
  15. #include <ls-std/boxing/Boolean.hpp>
  16. #include <ls-std/boxing/Double.hpp>
  17. #include <ls-std/boxing/Float.hpp>
  18. #include <ls-std/boxing/Integer.hpp>
  19. #include <ls-std/boxing/Long.hpp>
  20. #include <ls-std/boxing/String.hpp>
  21. #endif