Index: sdk/lib/collection/maps.dart |
diff --git a/sdk/lib/collection/maps.dart b/sdk/lib/collection/maps.dart |
index b4eef3f72044d02e4d8bbdb05db9c755c4028545..bd7d755a6343139193bc5f673e869717b421a59b 100644 |
--- a/sdk/lib/collection/maps.dart |
+++ b/sdk/lib/collection/maps.dart |
@@ -58,6 +58,8 @@ class Maps { |
static bool isEmpty(Map map) => map.keys.isEmpty; |
+ static bool isNotEmpty(Map map) => map.keys.isNotEmpty; |
+ |
/** |
* Returns a string representing the specified map. The returned string |
* looks like this: [:'{key0: value0, key1: value1, ... keyN: valueN}':]. |