If I use len() function inside of a foor loop , does it calculates the 
output each time? or if the output will be the same(like arrays) will it 
calculates the length of the function again ?

var letterRunes = 
[]rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_")


b := make([]rune, usernameLength)


for i := range b {
   b[i] = letterRunes[rand.Intn(len(letterRunes))]
}



-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to