| 59 | |
| 60 | template <typename V> |
| 61 | static typename std::enable_if<Vc::is_unsigned<V>::value, V>::type positiveRandom() |
| 62 | { |
| 63 | return V::Random(); |
| 64 | } |
| 65 | template <typename V> |
| 66 | static typename std::enable_if<!Vc::is_unsigned<V>::value, V>::type positiveRandom() |
| 67 | { |