| 72 | private: |
| 73 | |
| 74 | inline T rnd() |
| 75 | { |
| 76 | // Note: Do not use this in production |
| 77 | // Result is in the interval [0,1) |
| 78 | return T(::rand() / T(RAND_MAX + 1.0)); |
| 79 | } |
| 80 | }; |
| 81 | |
| 82 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected