fixed typo in name for IntegerConcept and also added UnsignedIntegerConcept

[SVN r10284]
This commit is contained in:
Jeremy Siek
2001-06-07 20:33:42 +00:00
parent 627b1f3590
commit 753a88f0ea

View File

@@ -57,11 +57,14 @@
<pre>
template &lt;class T&gt;
struct Integer_concept; // Is T a built-in integer type?
struct IntegerConcept; // Is T a built-in integer type?
template &lt;class T&gt;
struct SignedIntegerConcept; // Is T a built-in signed integer type?
template &lt;class T&gt;
struct UnsignedIntegerConcept; // Is T a built-in unsigned integer type?
template &lt;class X, class Y&gt;
struct ConvertibleConcept; // Is X convertible to Y?