summaryrefslogtreecommitdiff
path: root/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'random.c')
-rw-r--r--random.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/random.c b/random.c
index b36784c405..ccae2a0178 100644
--- a/random.c
+++ b/random.c
@@ -943,6 +943,22 @@ rb_random_real(VALUE obj)
return genrand_real(&rnd->mt);
}
+unsigned long
+rb_random_ulong_limited(VALUE obj, unsigned long limit)
+{
+ rb_random_t *rnd = try_get_rnd(obj);
+ if (!rnd) {
+ VALUE lim = ULONG2NUM(limit);
+ VALUE v = rb_funcall2(obj, id_rand, 1, &lim);
+ unsigned long r = NUM2ULONG(v);
+ if (r > limit) {
+ rb_raise(rb_eRangeError, "random number too big %ld", r);
+ }
+ return r;
+ }
+ return limited_rand(&rnd->mt, limit);
+}
+
/*
* call-seq: prng.bytes(size) -> a_string
*