Do we want the Random module to provide a ready-to-use generator instance? #7225
If we do, would the user call all the usual methods on that instance? Or, would the methods on that instance be available as module-level functions, ex. fillRandom, iterate, ...? The latter is Python's route.
Or, the user would obtain the next random number from that instance by calling the module-level function random(type t) ?
If there is a predefined instance, should there be one locally on each locale? #10741