跟随方法

Iterable<E> 跟随(
  1. 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);