We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f126b commit 7695b27Copy full SHA for 7695b27
README.md
@@ -22,7 +22,18 @@ Include it in your solution, and you are good to go.
22
# Guide
23
All evaluations occurs after removing const, volatile, reference.
24
Implementation is in namespace woon2.
25
-(Use like woon2::is_smart_ptr<T>, or write using namespace woon2; in your code.)
+```c++
26
+#include "smart_pointer_type_trait.hpp" // include the header file.
27
+
28
+// ...
29
30
+ woon2::is_smart_ptr_v<T>; // usage guide 1
31
32
+ using namespace woon2; // usage guide 2
33
+ is_smart_ptr_v<T>;
34
35
36
+```
37
38
## Hard Type Traits
39
* is_pointable<T>
0 commit comments