From Jason Turner

[type.index.members]

Diff to HTML by rtfpessoa

tmp/tmpc9tjdn94/{from.md → to.md} RENAMED
@@ -2,56 +2,56 @@
2
 
3
  ``` cpp
4
  type_index(const type_info& rhs) noexcept;
5
  ```
6
 
7
- *Effects:* constructs a `type_index` object, the equivalent of
8
  `target = &rhs`.
9
 
10
  ``` cpp
11
  bool operator==(const type_index& rhs) const noexcept;
12
  ```
13
 
14
- *Returns:* `*target == *rhs.target`
15
 
16
  ``` cpp
17
  bool operator!=(const type_index& rhs) const noexcept;
18
  ```
19
 
20
- *Returns:* `*target != *rhs.target`
21
 
22
  ``` cpp
23
  bool operator<(const type_index& rhs) const noexcept;
24
  ```
25
 
26
- *Returns:* `target->before(*rhs.target)`
27
 
28
  ``` cpp
29
  bool operator<=(const type_index& rhs) const noexcept;
30
  ```
31
 
32
- *Returns:* `!rhs.target->before(*target)`
33
 
34
  ``` cpp
35
  bool operator>(const type_index& rhs) const noexcept;
36
  ```
37
 
38
- *Returns:* `rhs.target->before(*target)`
39
 
40
  ``` cpp
41
  bool operator>=(const type_index& rhs) const noexcept;
42
  ```
43
 
44
- *Returns:* `!target->before(*rhs.target)`
45
 
46
  ``` cpp
47
  size_t hash_code() const noexcept;
48
  ```
49
 
50
- *Returns:* `target->hash_code()`
51
 
52
  ``` cpp
53
  const char* name() const noexcept;
54
  ```
55
 
56
- *Returns:* `target->name()`
57
 
 
2
 
3
  ``` cpp
4
  type_index(const type_info& rhs) noexcept;
5
  ```
6
 
7
+ *Effects:* Constructs a `type_index` object, the equivalent of
8
  `target = &rhs`.
9
 
10
  ``` cpp
11
  bool operator==(const type_index& rhs) const noexcept;
12
  ```
13
 
14
+ *Returns:* `*target == *rhs.target`.
15
 
16
  ``` cpp
17
  bool operator!=(const type_index& rhs) const noexcept;
18
  ```
19
 
20
+ *Returns:* `*target != *rhs.target`.
21
 
22
  ``` cpp
23
  bool operator<(const type_index& rhs) const noexcept;
24
  ```
25
 
26
+ *Returns:* `target->before(*rhs.target)`.
27
 
28
  ``` cpp
29
  bool operator<=(const type_index& rhs) const noexcept;
30
  ```
31
 
32
+ *Returns:* `!rhs.target->before(*target)`.
33
 
34
  ``` cpp
35
  bool operator>(const type_index& rhs) const noexcept;
36
  ```
37
 
38
+ *Returns:* `rhs.target->before(*target)`.
39
 
40
  ``` cpp
41
  bool operator>=(const type_index& rhs) const noexcept;
42
  ```
43
 
44
+ *Returns:* `!target->before(*rhs.target)`.
45
 
46
  ``` cpp
47
  size_t hash_code() const noexcept;
48
  ```
49
 
50
+ *Returns:* `target->hash_code()`.
51
 
52
  ``` cpp
53
  const char* name() const noexcept;
54
  ```
55
 
56
+ *Returns:* `target->name()`.
57