Loading...
Searching...
No Matches
EnumClassHash.h
Go to the documentation of this file.
1//
2// Created by Dave Smith on 10/3/25.
3//
4
5#ifndef ENUMCLASSHASH_H
6#define ENUMCLASSHASH_H
11
12namespace ml{
14 template <typename T>
15 std::size_t operator()(T t) const {
16 return static_cast<std::size_t>(t);
17 }
18 };}
19#endif //ENUMCLASSHASH_H
Definition Component.h:18
std::size_t operator()(T t) const