MUDA
Loading...
Searching...
No Matches
compute_graph_closure_id.h
1#pragma once
2#include <muda/tools/id_with_type.h>
3namespace muda
4{
5class ClosureId : public U64IdWithType
6{
7 using U64IdWithType::U64IdWithType;
8};
9} // namespace muda
10
11namespace std
12{
13template <>
14struct hash<muda::ClosureId>
15{
16 size_t operator()(const muda::ClosureId& s) const noexcept
17 {
18 return std::hash<uint64_t>{}(s.value());
19 }
20};
21} // namespace std
Definition compute_graph_closure_id.h:6
Definition id_with_type.h:10