Method: Random#state

Defined in:
random.c

#stateObject (private)

:nodoc:

[View source]

829
830
831
832
833
834
# File 'random.c', line 829

static VALUE
rand_mt_state(VALUE obj)
{
    rb_random_mt_t *rnd = get_rnd_mt(obj);
    return mt_state(&rnd->mt);
}