! returns an size_t sized ID */
| 115 | |
| 116 | /*! returns an size_t sized ID */ |
| 117 | __forceinline size_t ID() const { |
| 118 | #if defined(__64BIT__) |
| 119 | return size_t(lbounds.bounds0.lower.u) + (size_t(lbounds.bounds0.upper.u) << 32); |
| 120 | #else |
| 121 | return size_t(lbounds.bounds0.lower.u); |
| 122 | #endif |
| 123 | } |
| 124 | |
| 125 | /*! special function for operator< */ |
| 126 | __forceinline uint64_t ID64() const { |
no outgoing calls
no test coverage detected