blob: 14a21178416daac042e3d27ff863d542ca9a9bc3 [file] [log] [blame]
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
/**
* @fileoverview Helper functions for (typed) arrays.
*/
lib.array = {};
/**
* Concatenate an arbitrary number of typed arrays of the same type into a new
* typed array of this type.
*
* @template TYPED_ARRAY
* @param {...!TYPED_ARRAY} arrays
* @returns {!TYPED_ARRAY}
*/
lib.array.concatTyped = function(...arrays) {
let resultLength = 0;
for (const array of arrays) {
resultLength += array.length;
}
const result = new arrays[0].constructor(resultLength);
let pos = 0;
for (const array of arrays) {
result.set(array, pos);
pos += array.length;
}
return result;
};
/**
* Compare two array-like objects entrywise.
*
* @template ARRAY_LIKE
* @param {?ARRAY_LIKE} a
* @param {?ARRAY_LIKE} b
* @returns {!boolean} true if both arrays are null or they agree entrywise;
* false otherwise.
*/
lib.array.compare = function(a, b) {
if (a === null || b === null) {
return a === null && b === null;
}
if (a.length !== b.length) {
return false;
}
for (let i = 0; i < a.length; i++) {
if (a[i] !== b[i]) {
return false;
}
}
return true;
};