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

Side by Side Diff: utils/pub/yaml/deep_equals.dart

Issue 11227042: isEven, isOdd, isNegative, isMaxValue, isMinValue, isInfinite, isPositive, isSingleValue. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 1 month 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 | Annotate | Revision Log
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 #library("deep_equals"); 5 #library("deep_equals");
6 6
7 /** 7 /**
8 * Returns whether two objects are structurally equivalent. This considers NaN 8 * Returns whether two objects are structurally equivalent. This considers NaN
9 * values to be equivalent. It also handles self-referential structures. 9 * values to be equivalent. It also handles self-referential structures.
10 */ 10 */
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 64 }
65 65
66 return true; 66 return true;
67 } 67 }
68 68
69 /** 69 /**
70 * Returns whether two doubles are equivalent. This differs from `d1 == d2` in 70 * Returns whether two doubles are equivalent. This differs from `d1 == d2` in
71 * that it considers NaN to be equal to itself. 71 * that it considers NaN to be equal to itself.
72 */ 72 */
73 bool _doubleEquals(double d1, double d2) { 73 bool _doubleEquals(double d1, double d2) {
74 if (d1.isNaN() && d2.isNaN()) return true; 74 if (d1.isNaN && d2.isNaN) return true;
75 return d1 == d2; 75 return d1 == d2;
76 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698