跟随后置方法
- Iterable<
E>
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);