| 10 | |
| 11 | struct Rand { |
| 12 | static void operation(double& result, void* dataPtr) { |
| 13 | auto context = reinterpret_cast<FunctionBindData*>(dataPtr)->clientContext; |
| 14 | result = static_cast<double>(RandomEngine::Get(*context)->nextRandomInteger()) / |
| 15 | static_cast<double>(UINT32_MAX); |
| 16 | } |
| 17 | }; |
| 18 | |
| 19 | function_set RandFunction::getFunctionSet() { |
nothing calls this directly
no test coverage detected