Ejemplo n.º 1
0
bool Uuid::operator <(const Uuid& other) const {
	return std::lexicographical_compare(this->begin(), this->end(),
			other.begin(), other.end());
}
Ejemplo n.º 2
0
void Uuid::swap(Uuid& other) {
	std::swap_ranges(begin(), end(), other.begin());
}
Ejemplo n.º 3
0
bool Uuid::operator ==(const Uuid& other) const {
	return std::equal(this->begin(), this->end(), other.begin());
}