Expand description
The module that contains trait Random_Engine
Traitsยง
- Random_
Engine - The supporting trait for
Random_Generic
Random_Generic
uses whatever object that has this trait for pseudo-random number generator engine. So, if you plug in any hash algorithm that has this trait toRandom_Generic
,Random_Generic
will use the object as its pseudo-random number generator engine. You will hardly use the object that has this trait except the case that you use it in order to plug it in theRandom_Generic
.