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

Unified Diff: pkg/fixnum/intx.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, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/fixnum/intx.dart
diff --git a/pkg/fixnum/intx.dart b/pkg/fixnum/intx.dart
index 1fe14931d66e7a0316f9fd81d83d4072589082d0..a18d84914b5a83669164337078036d186b33ea06 100644
--- a/pkg/fixnum/intx.dart
+++ b/pkg/fixnum/intx.dart
@@ -39,12 +39,12 @@ abstract class intx implements Comparable {
bool operator >=(other);
// Testers.
- bool isEven();
- bool isMaxValue();
- bool isMinValue();
- bool isNegative();
- bool isOdd();
- bool isZero();
+ bool get isEven;
+ bool get isMaxValue;
+ bool get isMinValue;
+ bool get isNegative;
+ bool get isOdd;
+ bool get isZero;
int get hashCode;
« lib/core/int.dart ('K') | « pkg/fixnum/int64.dart ('k') | pkg/fixnum/test/int_64_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698