Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: sdk/lib/math/random.dart

Issue 2974433002: Remaining private libs (Closed)
Patch Set: It's html_common Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sdk/lib/math/point.dart ('k') | sdk/lib/math/rectangle.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/math/point.dart ('k') | sdk/lib/math/rectangle.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698