From 8c92a788530f2234d24c321670f9654b5fc4eceb Mon Sep 17 00:00:00 2001 From: def Date: Mon, 12 Jan 2015 23:44:14 +0100 Subject: [PATCH] Export new math procs --- lib/pure/math.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pure/math.nim b/lib/pure/math.nim index b2a588aa87..e520720d39 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -280,11 +280,11 @@ proc random*[T](x: Slice[T]): T = ## For a slice `a .. b` returns a value in the range `a .. b-1`. result = random(x.b - x.a) + x.a -proc random[T](a: openArray[T]): T = +proc random*[T](a: openArray[T]): T = ## returns a random element from the openarray `a`. result = a[random(a.low..a.len)] -proc shuffle[T](a: var openArray[T]) = +proc shuffle*[T](a: var openArray[T]) = ## Shuffles the elements in `a`. Note that ``randomize`` needs to be called ## to initialize the random number generator, otherwise ``shuffle`` always ## shuffles in the same way.