1%feature("docstring") OT::RandomGeneratorState 2"Random generator state. 3 4Data structure used to save the internal state of the generator. 5 6Parameters 7---------- 8buffer : sequence of int 9 The history buffer 10index : int 11 The index into buffer" 12 13// --------------------------------------------------------------------- 14 15%feature("docstring") OT::RandomGeneratorState::getBuffer 16"Random generator state buffer accessor. 17 18Returns 19------- 20buffer : sequence of int 21 The history buffer" 22 23// --------------------------------------------------------------------- 24 25%feature("docstring") OT::RandomGeneratorState::getIndex 26"Random generator state index accessor. 27 28Returns 29------- 30index : int 31 The index into buffer" 32