- Iterable
- expand(Iterable f(E element))
+ Iterable<T>
+ expand<T>(Iterable<T> f(E element))
Expands each element of this Iterable
into zero or more elements.
diff --git a/testing/test_package_docs/fake/ExtraSpecialList/fold.html b/testing/test_package_docs/fake/ExtraSpecialList/fold.html
index 609a14deea..b38d64b524 100644
--- a/testing/test_package_docs/fake/ExtraSpecialList/fold.html
+++ b/testing/test_package_docs/fake/ExtraSpecialList/fold.html
@@ -55,7 +55,7 @@
- method fold
+ method fold<T>
@@ -149,8 +149,8 @@
- dynamic
- fold(initialValue, dynamic combine(previousValue, E element))
+ T
+ fold<T>(T initialValue, T combine(T previousValue, E element))
Reduces a collection to a single value by iteratively combining each
diff --git a/testing/test_package_docs/fake/ExtraSpecialList/map.html b/testing/test_package_docs/fake/ExtraSpecialList/map.html
index bd04725b0a..096a7fe9f3 100644
--- a/testing/test_package_docs/fake/ExtraSpecialList/map.html
+++ b/testing/test_package_docs/fake/ExtraSpecialList/map.html
@@ -55,7 +55,7 @@
- method map
+ method map<T>
@@ -149,8 +149,8 @@
- Iterable
- map(dynamic f(E element))
+ Iterable<T>
+ map<T>(T f(E element))
Returns a new lazy Iterable
with elements that are created by
diff --git a/testing/test_package_docs/fake/SpecialList-class.html b/testing/test_package_docs/fake/SpecialList-class.html
index d33c1182b3..744b54bbe1 100644
--- a/testing/test_package_docs/fake/SpecialList-class.html
+++ b/testing/test_package_docs/fake/SpecialList-class.html
@@ -406,8 +406,8 @@
Methods
inherited
- expand(Iterable f(E element))
- → Iterable
+ expand<T>(Iterable<T> f(E element))
+ → Iterable<T>
@@ -434,8 +434,8 @@ Methods
inherited
- fold(initialValue, dynamic combine(previousValue, E element))
- → dynamic
+ fold<T>(T initialValue, T combine(T previousValue, E element))
+ → T
@@ -520,8 +520,8 @@ Methods
inherited
- map(dynamic f(E element))
- → Iterable
+ map<T>(T f(E element))
+ → Iterable<T>
diff --git a/testing/test_package_docs/fake/SpecialList/expand.html b/testing/test_package_docs/fake/SpecialList/expand.html
index ed3e5a0d2d..9bb98f432a 100644
--- a/testing/test_package_docs/fake/SpecialList/expand.html
+++ b/testing/test_package_docs/fake/SpecialList/expand.html
@@ -55,7 +55,7 @@
- method expand
+ method expand<T>
@@ -149,8 +149,8 @@
- Iterable
- expand(Iterable f(E element))
+ Iterable<T>
+ expand<T>(Iterable<T> f(E element))
Expands each element of this Iterable
into zero or more elements.
diff --git a/testing/test_package_docs/fake/SpecialList/fold.html b/testing/test_package_docs/fake/SpecialList/fold.html
index 57e12da5c1..2dd580eaaf 100644
--- a/testing/test_package_docs/fake/SpecialList/fold.html
+++ b/testing/test_package_docs/fake/SpecialList/fold.html
@@ -55,7 +55,7 @@
- method fold
+ method fold<T>
@@ -149,8 +149,8 @@
- dynamic
- fold(initialValue, dynamic combine(previousValue, E element))
+ T
+ fold<T>(T initialValue, T combine(T previousValue, E element))
Reduces a collection to a single value by iteratively combining each
diff --git a/testing/test_package_docs/fake/SpecialList/map.html b/testing/test_package_docs/fake/SpecialList/map.html
index bae4337ff8..3adc7b7253 100644
--- a/testing/test_package_docs/fake/SpecialList/map.html
+++ b/testing/test_package_docs/fake/SpecialList/map.html
@@ -55,7 +55,7 @@
- method map
+ method map<T>
@@ -149,8 +149,8 @@
- Iterable
- map(dynamic f(E element))
+ Iterable<T>
+ map<T>(T f(E element))
Returns a new lazy Iterable
with elements that are created by