Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IBM Bluemix 上の OpenWhisk にデプロイされた関数内で、Swift で乱数を生成したいと考えています。
Linuxランタイムなので使えませんarc4random_uniform()。drand48()また、真の乱数 (疑似乱数列) が得られないため、使用したくありません。
arc4random_uniform()
drand48()
それでも、これまでに試した...
let answer = drand48() * 10000
...結果は 3.90798504668055e-10 になります
何か案は?