Maps index in source string to index in destination string.
More...
#include <stdex/mapping.hpp>
|
| mapping () |
| Constructs a zero to zero mapping.
|
|
| mapping (T x) |
| Constructs an id mapping.
|
|
| mapping (T _from, T _to) |
| Constructs a mapping.
|
|
bool | operator== (const mapping &other) const |
| Are mappings identical?
|
|
bool | operator!= (const mapping &other) const |
| Are mappings different?
|
|
mapping | operator+ (const mapping &other) const |
| Adds two mappings by components.
|
|
void | invert () |
| Reverses source and destination indexes.
|
|
template<class T>
struct stdex::mapping< T >
Maps index in source string to index in destination string.
◆ mapping() [1/2]
Constructs an id mapping.
- Parameters
-
[in] | x | Mapping from and to value |
◆ mapping() [2/2]
Constructs a mapping.
- Parameters
-
[in] | _from | Mapping from value |
[in] | _to | Mapping to value |
◆ operator!=()
Are mappings different?
- Parameters
-
[in] | other | Other mapping to compare against |
- Returns
- true if mappings are different or false otherwise
◆ operator+()
Adds two mappings by components.
- Parameters
-
- Returns
- Resulting mapping
◆ operator==()
Are mappings identical?
- Parameters
-
[in] | other | Other mapping to compare against |
- Returns
- true if mappings are identical or false otherwise
The documentation for this struct was generated from the following file: