跟随方法
- Iterable<
E> other
override
创建此可迭代对象与 other
的懒连接。
返回的可迭代对象将提供与该可迭代对象相同的元素,之后是 other
的元素,顺序与原始可迭代对象中的顺序相同。
示例
var planets = <String>['Earth', 'Jupiter'];
var updated = planets.followedBy(['Mars', 'Venus']);
print(updated); // (Earth, Jupiter, Mars, Venus)
实现
Iterable<E> followedBy(Iterable<E> other) =>
FollowedByIterable<E>.firstEfficient(this, other);