CurryInfo: random-3.0.0 / System.Random.shuffle

definition:
shuffle :: Int -> [a] -> [a]
shuffle rnd xs = shuffleWithLen (nextInt rnd) (length xs) xs
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Computes a random permutation of the given list.
---
--- @param rnd random seed
--- @param l lists to shuffle
--- @return shuffled list
---
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> {:,[]}}
name:
shuffle
precedence:
no precedence defined
result-values:
{:,[]}
signature:
Prelude.Int -> [a] -> [a]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term