紧跟 方法

可迭代<E> 紧跟(
  1. 可迭代<E> other
)

创建此可迭代对象和 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) {
  var self = this; // TODO(lrn): Remove when we can promote `this`.
  if (self is EfficientLengthIterable<E>) {
    return FollowedByIterable<E>.firstEfficient(self, other);
  }
  return FollowedByIterable<E>(this, other);
}