Index: sdk/lib/html/dartium/html_dartium.dart |
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart |
index 2cf25d8b4276f58330ca7074d74a8a4935b1e706..c8b126b00482403e29366faf6e34c55b4c5a100e 100644 |
--- a/sdk/lib/html/dartium/html_dartium.dart |
+++ b/sdk/lib/html/dartium/html_dartium.dart |
@@ -7880,7 +7880,11 @@ class DomMimeTypeArray extends NativeFieldWrapperClass1 implements List<DomMimeT |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(DomMimeType element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(DomMimeType element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(DomMimeType element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<DomMimeType> where(bool f(DomMimeType element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -7894,13 +7898,13 @@ class DomMimeTypeArray extends NativeFieldWrapperClass1 implements List<DomMimeT |
bool get isEmpty => this.length == 0; |
- List<DomMimeType> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<DomMimeType> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<DomMimeType> takeWhile(bool test(DomMimeType value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<DomMimeType> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<DomMimeType> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<DomMimeType> skipWhile(bool test(DomMimeType value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -8143,7 +8147,11 @@ class DomPluginArray extends NativeFieldWrapperClass1 implements List<DomPlugin> |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(DomPlugin element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(DomPlugin element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(DomPlugin element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<DomPlugin> where(bool f(DomPlugin element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -8157,13 +8165,13 @@ class DomPluginArray extends NativeFieldWrapperClass1 implements List<DomPlugin> |
bool get isEmpty => this.length == 0; |
- List<DomPlugin> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<DomPlugin> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<DomPlugin> takeWhile(bool test(DomPlugin value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<DomPlugin> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<DomPlugin> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<DomPlugin> skipWhile(bool test(DomPlugin value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -8525,7 +8533,11 @@ class DomStringList extends NativeFieldWrapperClass1 implements List<String> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(String element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(String element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(String element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<String> where(bool f(String element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -8539,13 +8551,13 @@ class DomStringList extends NativeFieldWrapperClass1 implements List<String> { |
bool get isEmpty => this.length == 0; |
- List<String> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<String> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<String> takeWhile(bool test(String value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<String> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<String> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<String> skipWhile(bool test(String value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -8801,6 +8813,10 @@ class _ChildrenElementList implements List { |
return IterableMixinWorkaround.joinList(this, separator); |
} |
+ Iterable map(f(Element element)) { |
+ return IterableMixinWorkaround.map(this, f); |
+ } |
+ |
List mappedBy(f(Element element)) { |
return IterableMixinWorkaround.mappedByList(this, f); |
} |
@@ -8813,7 +8829,7 @@ class _ChildrenElementList implements List { |
return _element.$dom_firstElementChild == null; |
} |
- List<Element> take(int n) { |
+ Iterable<Element> take(int n) { |
return IterableMixinWorkaround.takeList(this, n); |
} |
@@ -8821,7 +8837,7 @@ class _ChildrenElementList implements List { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Element> skip(int n) { |
+ Iterable<Element> skip(int n) { |
return IterableMixinWorkaround.skipList(this, n); |
} |
@@ -9014,6 +9030,10 @@ class _FrozenElementList implements List { |
return IterableMixinWorkaround.joinList(this, separator); |
} |
+ Iterable map(f(Element element)) { |
+ return IterableMixinWorkaround.map(this, f); |
+ } |
+ |
List mappedBy(f(Element element)) { |
return IterableMixinWorkaround.mappedByList(this, f); |
} |
@@ -9043,7 +9063,7 @@ class _FrozenElementList implements List { |
List<Element> toList() => new List<Element>.from(this); |
Set<Element> toSet() => new Set<Element>.from(this); |
- List<Element> take(int n) { |
+ Iterable<Element> take(int n) { |
return IterableMixinWorkaround.takeList(this, n); |
} |
@@ -9051,7 +9071,7 @@ class _FrozenElementList implements List { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Element> skip(int n) { |
+ Iterable<Element> skip(int n) { |
return IterableMixinWorkaround.skipList(this, n); |
} |
@@ -11440,7 +11460,11 @@ class FileList extends NativeFieldWrapperClass1 implements List<File> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(File element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(File element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(File element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<File> where(bool f(File element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -11454,13 +11478,13 @@ class FileList extends NativeFieldWrapperClass1 implements List<File> { |
bool get isEmpty => this.length == 0; |
- List<File> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<File> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<File> takeWhile(bool test(File value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<File> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<File> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<File> skipWhile(bool test(File value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -12097,7 +12121,11 @@ class Float32Array extends ArrayBufferView implements List<num> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(num element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(num element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(num element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<num> where(bool f(num element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -12111,13 +12139,13 @@ class Float32Array extends ArrayBufferView implements List<num> { |
bool get isEmpty => this.length == 0; |
- List<num> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<num> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<num> takeWhile(bool test(num value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<num> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<num> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<num> skipWhile(bool test(num value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -12322,7 +12350,11 @@ class Float64Array extends ArrayBufferView implements List<num> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(num element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(num element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(num element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<num> where(bool f(num element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -12336,13 +12368,13 @@ class Float64Array extends ArrayBufferView implements List<num> { |
bool get isEmpty => this.length == 0; |
- List<num> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<num> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<num> takeWhile(bool test(num value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<num> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<num> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<num> skipWhile(bool test(num value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -12894,7 +12926,11 @@ class HtmlAllCollection extends NativeFieldWrapperClass1 implements List<Node> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Node element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Node element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Node element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Node> where(bool f(Node element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -12908,13 +12944,13 @@ class HtmlAllCollection extends NativeFieldWrapperClass1 implements List<Node> { |
bool get isEmpty => this.length == 0; |
- List<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Node> takeWhile(bool test(Node value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Node> skipWhile(bool test(Node value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -13099,7 +13135,11 @@ class HtmlCollection extends NativeFieldWrapperClass1 implements List<Node> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Node element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Node element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Node element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Node> where(bool f(Node element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -13113,13 +13153,13 @@ class HtmlCollection extends NativeFieldWrapperClass1 implements List<Node> { |
bool get isEmpty => this.length == 0; |
- List<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Node> takeWhile(bool test(Node value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Node> skipWhile(bool test(Node value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -15217,7 +15257,11 @@ class Int16Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -15231,13 +15275,13 @@ class Int16Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -15442,7 +15486,11 @@ class Int32Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -15456,13 +15504,13 @@ class Int32Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -15667,7 +15715,11 @@ class Int8Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -15681,13 +15733,13 @@ class Int8Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -18251,7 +18303,11 @@ class NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Node element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Node element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Node element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Node> where(bool f(Node element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -18265,13 +18321,13 @@ class NamedNodeMap extends NativeFieldWrapperClass1 implements List<Node> { |
bool get isEmpty => this.length == 0; |
- List<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Node> takeWhile(bool test(Node value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Node> skipWhile(bool test(Node value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -18714,6 +18770,10 @@ class _ChildNodeListLazy implements List { |
return IterableMixinWorkaround.joinList(this, separator); |
} |
+ Iterable map(f(Node element)) { |
+ return IterableMixinWorkaround.map(this, f); |
+ } |
+ |
List mappedBy(f(Node element)) { |
return IterableMixinWorkaround.mappedByList(this, f); |
} |
@@ -18733,7 +18793,7 @@ class _ChildNodeListLazy implements List { |
// From List<Node>: |
- List<Node> take(int n) { |
+ Iterable<Node> take(int n) { |
return IterableMixinWorkaround.takeList(this, n); |
} |
@@ -18741,7 +18801,7 @@ class _ChildNodeListLazy implements List { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Node> skip(int n) { |
+ Iterable<Node> skip(int n) { |
return IterableMixinWorkaround.skipList(this, n); |
} |
@@ -19099,7 +19159,11 @@ class NodeList extends NativeFieldWrapperClass1 implements List<Node> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Node element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Node element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Node element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Node> where(bool f(Node element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -19113,13 +19177,13 @@ class NodeList extends NativeFieldWrapperClass1 implements List<Node> { |
bool get isEmpty => this.length == 0; |
- List<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Node> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Node> takeWhile(bool test(Node value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Node> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Node> skipWhile(bool test(Node value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -21795,7 +21859,11 @@ class SourceBufferList extends EventTarget implements List<SourceBuffer> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(SourceBuffer element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(SourceBuffer element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(SourceBuffer element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<SourceBuffer> where(bool f(SourceBuffer element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -21809,13 +21877,13 @@ class SourceBufferList extends EventTarget implements List<SourceBuffer> { |
bool get isEmpty => this.length == 0; |
- List<SourceBuffer> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<SourceBuffer> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<SourceBuffer> takeWhile(bool test(SourceBuffer value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<SourceBuffer> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<SourceBuffer> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<SourceBuffer> skipWhile(bool test(SourceBuffer value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -22105,7 +22173,11 @@ class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(SpeechGrammar element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(SpeechGrammar element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(SpeechGrammar element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<SpeechGrammar> where(bool f(SpeechGrammar element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -22119,13 +22191,13 @@ class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG |
bool get isEmpty => this.length == 0; |
- List<SpeechGrammar> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<SpeechGrammar> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<SpeechGrammar> takeWhile(bool test(SpeechGrammar value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<SpeechGrammar> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<SpeechGrammar> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<SpeechGrammar> skipWhile(bool test(SpeechGrammar value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -22801,7 +22873,11 @@ class SqlResultSetRowList extends NativeFieldWrapperClass1 implements List<Map> |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Map element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Map element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Map element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Map> where(bool f(Map element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -22815,13 +22891,13 @@ class SqlResultSetRowList extends NativeFieldWrapperClass1 implements List<Map> |
bool get isEmpty => this.length == 0; |
- List<Map> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Map> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Map> takeWhile(bool test(Map value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Map> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Map> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Map> skipWhile(bool test(Map value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -24118,7 +24194,11 @@ class TextTrackCueList extends NativeFieldWrapperClass1 implements List<TextTrac |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(TextTrackCue element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(TextTrackCue element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(TextTrackCue element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<TextTrackCue> where(bool f(TextTrackCue element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -24132,13 +24212,13 @@ class TextTrackCueList extends NativeFieldWrapperClass1 implements List<TextTrac |
bool get isEmpty => this.length == 0; |
- List<TextTrackCue> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<TextTrackCue> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<TextTrackCue> takeWhile(bool test(TextTrackCue value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<TextTrackCue> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<TextTrackCue> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<TextTrackCue> skipWhile(bool test(TextTrackCue value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -24329,7 +24409,11 @@ class TextTrackList extends EventTarget implements List<TextTrack> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(TextTrack element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(TextTrack element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(TextTrack element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<TextTrack> where(bool f(TextTrack element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -24343,13 +24427,13 @@ class TextTrackList extends EventTarget implements List<TextTrack> { |
bool get isEmpty => this.length == 0; |
- List<TextTrack> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<TextTrack> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<TextTrack> takeWhile(bool test(TextTrack value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<TextTrack> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<TextTrack> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<TextTrack> skipWhile(bool test(TextTrack value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -24732,7 +24816,11 @@ class TouchList extends NativeFieldWrapperClass1 implements List<Touch> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Touch element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Touch element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Touch element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Touch> where(bool f(Touch element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -24746,13 +24834,13 @@ class TouchList extends NativeFieldWrapperClass1 implements List<Touch> { |
bool get isEmpty => this.length == 0; |
- List<Touch> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Touch> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Touch> takeWhile(bool test(Touch value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Touch> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Touch> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Touch> skipWhile(bool test(Touch value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -25207,7 +25295,11 @@ class Uint16Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -25221,13 +25313,13 @@ class Uint16Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -25432,7 +25524,11 @@ class Uint32Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -25446,13 +25542,13 @@ class Uint32Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -25657,7 +25753,11 @@ class Uint8Array extends ArrayBufferView implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -25671,13 +25771,13 @@ class Uint8Array extends ArrayBufferView implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -25880,7 +25980,11 @@ class Uint8ClampedArray extends Uint8Array implements List<int> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(int element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(int element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(int element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<int> where(bool f(int element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -25894,13 +25998,13 @@ class Uint8ClampedArray extends Uint8Array implements List<int> { |
bool get isEmpty => this.length == 0; |
- List<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<int> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<int> takeWhile(bool test(int value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<int> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<int> skipWhile(bool test(int value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -29751,7 +29855,11 @@ class _ClientRectList extends NativeFieldWrapperClass1 implements List<ClientRec |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(ClientRect element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(ClientRect element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(ClientRect element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<ClientRect> where(bool f(ClientRect element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -29765,13 +29873,13 @@ class _ClientRectList extends NativeFieldWrapperClass1 implements List<ClientRec |
bool get isEmpty => this.length == 0; |
- List<ClientRect> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<ClientRect> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<ClientRect> takeWhile(bool test(ClientRect value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<ClientRect> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<ClientRect> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<ClientRect> skipWhile(bool test(ClientRect value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -29948,7 +30056,11 @@ class _CssRuleList extends NativeFieldWrapperClass1 implements List<CssRule> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(CssRule element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(CssRule element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(CssRule element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<CssRule> where(bool f(CssRule element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -29962,13 +30074,13 @@ class _CssRuleList extends NativeFieldWrapperClass1 implements List<CssRule> { |
bool get isEmpty => this.length == 0; |
- List<CssRule> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<CssRule> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<CssRule> takeWhile(bool test(CssRule value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<CssRule> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<CssRule> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<CssRule> skipWhile(bool test(CssRule value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -30145,7 +30257,11 @@ class _CssValueList extends CssValue implements List<CssValue> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(CssValue element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(CssValue element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(CssValue element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<CssValue> where(bool f(CssValue element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -30159,13 +30275,13 @@ class _CssValueList extends CssValue implements List<CssValue> { |
bool get isEmpty => this.length == 0; |
- List<CssValue> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<CssValue> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<CssValue> takeWhile(bool test(CssValue value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<CssValue> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<CssValue> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<CssValue> skipWhile(bool test(CssValue value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -30492,7 +30608,11 @@ class _EntryArray extends NativeFieldWrapperClass1 implements List<Entry> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Entry element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Entry element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Entry element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Entry> where(bool f(Entry element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -30506,13 +30626,13 @@ class _EntryArray extends NativeFieldWrapperClass1 implements List<Entry> { |
bool get isEmpty => this.length == 0; |
- List<Entry> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Entry> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Entry> takeWhile(bool test(Entry value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Entry> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Entry> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Entry> skipWhile(bool test(Entry value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -30689,7 +30809,11 @@ class _EntryArraySync extends NativeFieldWrapperClass1 implements List<EntrySync |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(EntrySync element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(EntrySync element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(EntrySync element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<EntrySync> where(bool f(EntrySync element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -30703,13 +30827,13 @@ class _EntryArraySync extends NativeFieldWrapperClass1 implements List<EntrySync |
bool get isEmpty => this.length == 0; |
- List<EntrySync> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<EntrySync> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<EntrySync> takeWhile(bool test(EntrySync value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<EntrySync> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<EntrySync> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<EntrySync> skipWhile(bool test(EntrySync value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -30977,7 +31101,11 @@ class _GamepadList extends NativeFieldWrapperClass1 implements List<Gamepad> { |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(Gamepad element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(Gamepad element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(Gamepad element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<Gamepad> where(bool f(Gamepad element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -30991,13 +31119,13 @@ class _GamepadList extends NativeFieldWrapperClass1 implements List<Gamepad> { |
bool get isEmpty => this.length == 0; |
- List<Gamepad> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<Gamepad> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<Gamepad> takeWhile(bool test(Gamepad value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<Gamepad> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<Gamepad> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<Gamepad> skipWhile(bool test(Gamepad value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -31187,7 +31315,11 @@ class _MediaStreamList extends NativeFieldWrapperClass1 implements List<MediaStr |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(MediaStream element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(MediaStream element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(MediaStream element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<MediaStream> where(bool f(MediaStream element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -31201,13 +31333,13 @@ class _MediaStreamList extends NativeFieldWrapperClass1 implements List<MediaStr |
bool get isEmpty => this.length == 0; |
- List<MediaStream> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<MediaStream> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<MediaStream> takeWhile(bool test(MediaStream value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<MediaStream> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<MediaStream> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<MediaStream> skipWhile(bool test(MediaStream value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -31384,7 +31516,11 @@ class _SpeechInputResultList extends NativeFieldWrapperClass1 implements List<Sp |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(SpeechInputResult element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(SpeechInputResult element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(SpeechInputResult element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<SpeechInputResult> where(bool f(SpeechInputResult element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -31398,13 +31534,13 @@ class _SpeechInputResultList extends NativeFieldWrapperClass1 implements List<Sp |
bool get isEmpty => this.length == 0; |
- List<SpeechInputResult> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<SpeechInputResult> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<SpeechInputResult> takeWhile(bool test(SpeechInputResult value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<SpeechInputResult> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<SpeechInputResult> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<SpeechInputResult> skipWhile(bool test(SpeechInputResult value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -31581,7 +31717,11 @@ class _SpeechRecognitionResultList extends NativeFieldWrapperClass1 implements L |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(SpeechRecognitionResult element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(SpeechRecognitionResult element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(SpeechRecognitionResult element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<SpeechRecognitionResult> where(bool f(SpeechRecognitionResult element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -31595,13 +31735,13 @@ class _SpeechRecognitionResultList extends NativeFieldWrapperClass1 implements L |
bool get isEmpty => this.length == 0; |
- List<SpeechRecognitionResult> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<SpeechRecognitionResult> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<SpeechRecognitionResult> takeWhile(bool test(SpeechRecognitionResult value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<SpeechRecognitionResult> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<SpeechRecognitionResult> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<SpeechRecognitionResult> skipWhile(bool test(SpeechRecognitionResult value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -31778,7 +31918,11 @@ class _StyleSheetList extends NativeFieldWrapperClass1 implements List<StyleShee |
String join([String separator]) => |
IterableMixinWorkaround.joinList(this, separator); |
- List mappedBy(f(StyleSheet element)) => IterableMixinWorkaround.mappedByList(this, f); |
+ Iterable map(f(StyleSheet element)) => |
+ IterableMixinWorkaround.map(this, f); |
+ |
+ List mappedBy(f(StyleSheet element)) => |
+ IterableMixinWorkaround.mappedByList(this, f); |
Iterable<StyleSheet> where(bool f(StyleSheet element)) => |
IterableMixinWorkaround.where(this, f); |
@@ -31792,13 +31936,13 @@ class _StyleSheetList extends NativeFieldWrapperClass1 implements List<StyleShee |
bool get isEmpty => this.length == 0; |
- List<StyleSheet> take(int n) => IterableMixinWorkaround.takeList(this, n); |
+ Iterable<StyleSheet> take(int n) => IterableMixinWorkaround.takeList(this, n); |
Iterable<StyleSheet> takeWhile(bool test(StyleSheet value)) { |
return IterableMixinWorkaround.takeWhile(this, test); |
} |
- List<StyleSheet> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
+ Iterable<StyleSheet> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
Iterable<StyleSheet> skipWhile(bool test(StyleSheet value)) { |
return IterableMixinWorkaround.skipWhile(this, test); |
@@ -32326,6 +32470,8 @@ abstract class CssClassSet implements Set<String> { |
String join([String separator]) => readClasses().join(separator); |
+ Iterable map(f(String element)) => readClasses().map(f); |
+ |
Iterable mappedBy(f(String element)) => readClasses().mappedBy(f); |
Iterable<String> where(bool f(String element)) => readClasses().where(f); |
@@ -32423,7 +32569,7 @@ abstract class CssClassSet implements Set<String> { |
* Helper method used to modify the set of css classes on this element. |
* |
* f - callback with: |
- * s - a Set of all the css class name currently on this element. |
+ * s - a Set of all the css class name currently on this element. |
* |
* After f returns, the modified set is written to the |
* className property of this element. |