25struct std::hash<
osc::LineSegment> {
28 return osc::hash_of(line_segment.start, line_segment.end);
Definition custom_decoration_generator.h:5
std::ostream & operator<<(std::ostream &, const Object &)
size_t hash_of(const T &v) noexcept(noexcept(std::hash< T >{}(v)))
Definition hash_helpers.h:24
constexpr U to(T &&value)
Definition conversion.h:56
Definition line_segment.h:13
Vector3 start
Definition line_segment.h:17
Vector3 end
Definition line_segment.h:18
constexpr friend bool operator==(const LineSegment &, const LineSegment &)=default
size_t operator()(const osc::LineSegment &line_segment) const noexcept
Definition line_segment.h:26