You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@ Single header Library utilities:
4
4
5
5
+[ptr_to_unique](https://github.com/make-cpp-nice/ptr_to_unique) - A smart pointer to an object already owned by a unique_ptr. It doesn't own the object but it self zeroes when the object is deleted so that it can never dangle.
6
6
+[numerical conversions](https://github.com/make-cpp-nice/numerical-conversions) - A set of dedicated numerical conversions that are a better choice than the canonical application of static_cast.
7
-
+[literal integral constants](https://github.com/make-cpp-nice/literal-integral-constants) - Converts literal constants into std::integral_constant using a double underscore suffix, e.g. 4__
7
+
+[literal integral constants](https://github.com/make-cpp-nice/literal-integral-constants) - Converts literal
8
+
constants into std::integral_constant using a double underscore suffix, e.g. 4__
8
9
9
10
Some thoughts:
10
11
@@ -16,7 +17,7 @@ Some thoughts:
16
17
+ Some clever and useful C++ constructs are difficult to decipher. Use them if they serve your purpose but encapsulate it so others don't have to go there.
17
18
+ Always prefer existing standard solutions but if they don't meet your needs then find or create something that does.
18
19
19
-
20
+
Please post any feedback or comments on [Comment and discussion](https://github.com/make-cpp-nice/make_cpp_nice/discussions)
0 commit comments