blob: 2df97c69e2ab33e74ce2d4bd81d43a174095f6e5 [file] [log] [blame]
// Copyright (c) 2013, 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> skip(int count)
* ...
* If [this] has fewer than [count] elements, then the resulting [Iterable] is
* empty.
* @description Checks that the returned [Iterable] is empty if [this] has
* fewer than [count] elements.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
Float32x4 pack(v) => new Float32x4.splat(v);
check(List<Float32x4> list, int n) {
var l = new Float32x4List.fromList(list);
var res = l.skip(n);
Expect.isTrue(res.isEmpty);
}
main() {
check([], 1);
check([pack(1.0), pack(2.0)], 3);
check(new Float32x4List(99), 100);
}