Changeset 1630:f67737f5727a in lemon-0.x for lemon/utility.h
- Timestamp:
- 08/16/05 18:44:57 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/utility.h
r1447 r1630 44 44 { 45 45 46 /// Basic type for defining "tags". A "YES" condition for enable_if.46 /// Basic type for defining "tags". A "YES" condition for \c enable_if. 47 47 48 /// Basic type for defining "tags". A "YES" condition for \c enable_if. 49 /// 50 ///\sa False 51 /// 48 52 /// \todo This should go to a separate "basic_types.h" (or something) 49 53 /// file. 50 54 struct True { 55 ///\e 51 56 static const bool value = true; 52 57 }; 53 58 54 /// Basic type for defining "tags". A "NO" condition for enable_if. 59 /// Basic type for defining "tags". A "NO" condition for \c enable_if. 60 61 /// Basic type for defining "tags". A "NO" condition for \c enable_if. 62 /// 63 ///\sa True 55 64 struct False { 65 ///\e 56 66 static const bool value = false; 57 67 };
Note: See TracChangeset
for help on using the changeset viewer.