The OpenD Programming Language

Random

The "default", "favorite", "suggested" random number generator type on the current platform. It is an alias for one of the generators. You may want to use it if (1) you need to generate some nice random numbers, and (2) you don't care for the minutiae of the method being used.

import mir.random.engine;
static if(is(size_t == uint))
alias Random = Mt19937

Meta