blob: 840696f7233fc925673a90efba3f821117a1dd94 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* @assertion Iterable<E> take(int count)
* Returns a lazy iterable of the [count] first elements of this iterable.
* @description checks that [Iterable] that contains the first [count] elements
* is returned.
* @author kaigorodov
*/
import "dart:collection";
import "dart:math" as Math;
import "../../../Utils/expect.dart";
check(List a, int n) {
DoubleLinkedQueue queue = new DoubleLinkedQueue.from(a);
Iterable it = queue.take(n);
Expect.equals(Math.min(queue.length, n), it.length);
int k = 0;
for (var el in it) {
Expect.equals(queue.elementAt(k), el);
k++;
}
}
main() {
check([1, 2, -3, 4], 4);
check([1, 2, -3, 4], 0);
check([11, 2, -3, 4], 2);
check([1, 22, -3, 4], 4);
check(const[1, 2, -5, -6, 100], 0);
check(const[1, -1, 2, -5, -6], 1);
check(const[0, 0, 1, 2, -5, -6], 2);
check(const[0, 0, 1, 2, -5, -6], 6);
}