OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of "math.dart"; | 5 part of "dart:math"; |
6 | 6 |
7 /** | 7 /** |
8 * A generator of random bool, int, or double values. | 8 * A generator of random bool, int, or double values. |
9 * | 9 * |
10 * The default implementation supplies a stream of | 10 * The default implementation supplies a stream of |
11 * pseudo-random bits that are not suitable for cryptographic purposes. | 11 * pseudo-random bits that are not suitable for cryptographic purposes. |
12 * | 12 * |
13 * Use the Random.secure() constructor for cryptographic | 13 * Use the Random.secure() constructor for cryptographic |
14 * purposes. | 14 * purposes. |
15 */ | 15 */ |
(...skipping 28 matching lines...) Expand all Loading... |
44 * Generates a non-negative random floating point value uniformly distributed | 44 * Generates a non-negative random floating point value uniformly distributed |
45 * in the range from 0.0, inclusive, to 1.0, exclusive. | 45 * in the range from 0.0, inclusive, to 1.0, exclusive. |
46 */ | 46 */ |
47 double nextDouble(); | 47 double nextDouble(); |
48 | 48 |
49 /** | 49 /** |
50 * Generates a random boolean value. | 50 * Generates a random boolean value. |
51 */ | 51 */ |
52 bool nextBool(); | 52 bool nextBool(); |
53 } | 53 } |
OLD | NEW |