Skip to content

Commit 45f1fca

Browse files
committed
updated readme
1 parent 8f821ee commit 45f1fca

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,24 @@ target_link_libraries(MY_TARGET UT::target_name)
3939

4040
<!-- AUTOGEN_BEGIN -->
4141

42-
* `UT::ptr_containers`
43-
* `UT::check`
44-
* `UT::pair`
45-
* `UT::add_noexcept`
46-
* `UT::sv_to_num`
47-
* `UT::copy_traits`
48-
* `UT::realloc_unique_ptr`
49-
* `UT::assert`
50-
* `UT::resource`
51-
* `UT::demangle`
52-
* `UT::constexpr_hash`
53-
* `UT::trim`
54-
* `UT::pack_loops`
55-
* `UT::static_string`
56-
* `UT::mt_queue`
57-
* `UT::curry`
58-
* `UT::defer`
59-
* `UT::print`
42+
* `UT::ptr_containers`: containers for storing owning pointers
43+
* `UT::check`: type which prints when it is constructed/copied/moved/destructed
44+
* `UT::pair`: a better `std::pair` implementation
45+
* `UT::add_noexcept`: add the `noexcept` specifier to a function type
46+
* `UT::sv_to_num`: convert `std::string_view` to a number
47+
* `UT::copy_traits`: copy cvref qualifiers from one type to another
48+
* `UT::realloc_unique_ptr`: `realloc` functionality for `std::uniqur_ptr`
49+
* `UT::assert`: various assertion macros
50+
* `UT::resource`: a more general version of `std::unique_ptr` that operates on values
51+
* `UT::demangle`: convert types into human readable strings
52+
* `UT::constexpr_hash`: a hashing function usable in `constexpr` context
53+
* `UT::trim`: trim characters from start and end of a `std::string_view`
54+
* `UT::pack_loops`: loop over variadic template parameters
55+
* `UT::static_string`: compile time known string usable as a template parameter
56+
* `UT::mt_queue`: thread safe FIFO queue
57+
* `UT::curry`: create a curried function out of a regular function
58+
* `UT::defer`: a macro to defer execution until the scope ends
59+
* `UT::print`: macros for printing using `std::format` in c++20
6060

6161
<!-- AUTOGEN_END -->
6262

0 commit comments

Comments
 (0)