Re: [go-nuts] Re: Generation of Strings - generation

2016-07-13 Thread Michael Jones
The first time this came up I wrote code to generate general alphabet combinations as quickly as I could. The approach I used was a generator object that one calls to set the length and alphabet size, and a Next() function that is called repeatedly until it signals that all values have been gene

[go-nuts] Re: Generation of Strings - generation

2016-07-13 Thread catalasexx
what about https://play.golang.org/p/TbZ-fbhUCb ? the code don't create goroutine. thus you don't have to care about troubles with managing goroutine. 2016년 7월 13일 수요일 오전 6시 36분 15초 UTC+9, The MrU 님의 말: > > Hi, > > I have this code https://play.golang.org/p/9o5TReZ7jT3 >