Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Inloggen
hoo2
/
utl
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
Recursive de-referencable nil_
doc
Christos Houtouridis
5 jaren geleden
bovenliggende
a7885e88a9
commit
63a7d1607d
2 gewijzigde bestanden
met
toevoegingen van 9
en
2 verwijderingen
Zij-aan-zij weergave
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-2
include/utl/meta/integral.h
+0
-0
include/utl/meta/invoke.h
+ 9
- 2
include/utl/meta/integral.h
Bestand weergeven
@@ -33,8 +33,15 @@
namespace utl {
namespace meta {
//! Empty type
struct nil_ { };
/*!
* Empty type
* utl::meta's nil type is not pure nil. It's a recursive "de-referencable nil.
* Each time someone applies ::type to it, he gets back nil_. This way we can prevent
* a lot of compilation errors in a wrong meta:: handling.
*/
struct nil_ {
using type = nil_;
};
//! Type alias for \p _Tp::type. Used to extract return type of metafunctions
template <typename _Tp>
include/utl/meta/utility.h → include/utl/meta/invoke.h
Bestand weergeven
Schrijf
Voorbeeld
Laden…
Annuleren
Opslaan