cgv
Loading...
Searching...
No Matches
zero.h
1#pragma once
2
3namespace cgv {
4 namespace type {
5 namespace traits {
8 template <typename T> struct zero { static const T value = 0; };
9 }
10 }
11}
the cgv namespace
Definition print.h:11
the zero traits defines for each type in the static const member value, what the zero value is.
Definition zero.h:8