2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-11-29 06:01:21 +00:00
|
|
|
// This module is browser compatible.
|
|
|
|
|
2023-11-13 05:34:32 +00:00
|
|
|
/**
|
2024-04-16 06:59:52 +00:00
|
|
|
* Concatenate an array of byte slices into a single slice.
|
2022-11-29 06:01:21 +00:00
|
|
|
*
|
2024-04-17 05:01:37 +00:00
|
|
|
* @param buffers Array of byte slices to concatenate.
|
2024-05-02 07:47:21 +00:00
|
|
|
* @returns A new byte slice containing all the input slices concatenated.
|
2024-04-16 06:59:52 +00:00
|
|
|
*
|
|
|
|
* @example Basic usage
|
2022-11-29 06:01:21 +00:00
|
|
|
* ```ts
|
2024-04-29 02:57:30 +00:00
|
|
|
* import { concat } from "@std/bytes/concat";
|
refactor(assert,async,bytes,cli,collections,crypto,csv,data-structures,datetime,dotenv,encoding,expect,fmt,front-matter,fs,html,http,ini,internal,io,json,jsonc,log,media-types,msgpack,net,path,semver,streams,testing,text,toml,ulid,url,uuid,webgpu,yaml): import from `@std/assert` (#5199)
* refactor: import from `@std/assert`
* update
2024-06-30 08:30:10 +00:00
|
|
|
* import { assertEquals } from "@std/assert";
|
2023-11-13 05:34:32 +00:00
|
|
|
*
|
2022-11-29 06:01:21 +00:00
|
|
|
* const a = new Uint8Array([0, 1, 2]);
|
|
|
|
* const b = new Uint8Array([3, 4, 5]);
|
2024-04-16 06:59:52 +00:00
|
|
|
*
|
2024-05-08 06:18:26 +00:00
|
|
|
* assertEquals(concat([a, b]), new Uint8Array([0, 1, 2, 3, 4, 5]));
|
2023-11-08 08:30:22 +00:00
|
|
|
* ```
|
2022-11-29 06:01:21 +00:00
|
|
|
*/
|
2024-04-17 05:01:37 +00:00
|
|
|
export function concat(buffers: Uint8Array[]): Uint8Array {
|
2022-11-29 06:01:21 +00:00
|
|
|
let length = 0;
|
2024-04-17 05:01:37 +00:00
|
|
|
for (const buffer of buffers) {
|
|
|
|
length += buffer.length;
|
2022-11-29 06:01:21 +00:00
|
|
|
}
|
|
|
|
const output = new Uint8Array(length);
|
|
|
|
let index = 0;
|
2024-04-17 05:01:37 +00:00
|
|
|
for (const buffer of buffers) {
|
|
|
|
output.set(buffer, index);
|
|
|
|
index += buffer.length;
|
2022-11-29 06:01:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|