Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for majuscule (0.15 sec)

  1. src/math/rand/rand.go

    	// Not only will it take a very long time, but with 2³¹! possible permutations,
    	// there's no way that any PRNG can have a big enough internal state to
    	// generate even a minuscule percentage of the possible permutations.
    	// Nevertheless, the right API signature accepts an int n, so handle it as best we can.
    	i := n - 1
    	for ; i > 1<<31-1-1; i-- {
    		j := int(r.Int63n(int64(i + 1)))
    		swap(i, j)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top