예제 #1
0
파일: Uuid.cpp 프로젝트: brics/brics_3d
bool Uuid::operator <(const Uuid& other) const {
	return std::lexicographical_compare(this->begin(), this->end(),
			other.begin(), other.end());
}
예제 #2
0
파일: Uuid.cpp 프로젝트: brics/brics_3d
void Uuid::swap(Uuid& other) {
	std::swap_ranges(begin(), end(), other.begin());
}
예제 #3
0
파일: Uuid.cpp 프로젝트: brics/brics_3d
bool Uuid::operator ==(const Uuid& other) const {
	return std::equal(this->begin(), this->end(), other.begin());
}