Lines Matching refs:array
116 …btains an ES6 iterator. Each item of the iterator is a JavaScript array, and each array contains a…
196 // Using an array
450 …array into a new Unit8Array typed array or encode a byte array into a string. **decode**: provides…
578 | encode(input : string) : Uint8Array | Encodes a string into a Uint8Array typed array.|
579 …, written : number} | Encodes a string into a Unit8Array typed array, and stores the array. **dest…
584 …rray, options?: { stream?: false }) : string | Decodes a Unit8Array typed array into a string. **i…
585 …rray, options?: { stream?: false }) : string | Decodes a Unit8Array typed array into a string. **i…
586 …e to synchronously encode all bytes in a Unit8Array typed array into a new Unit8Array typed array.|
587 … | Uses the Base64 encoding scheme to synchronously encode a Unit8Array typed array into a string.|
588 …usly decode a Base64-encoded string or a Unit8Array typed array into a new Unit8Array typed array.|
589 … to asynchronously encode all bytes in a Unit8Array typed array into a new Unit8Array typed array.|
590 …es the Base64 encoding scheme to asynchronously encode a Unit8Array typed array into a string. It …
591 …usly decode a Base64-encoded string or a Unit8Array typed array into a new Unit8Array typed array.|
624 | \[Symbol.iterator\](): [K,V] | Obtains a two-dimensional array in key-value pairs.|
797 var array = new Uint8Array([115,49,51]);
798 var result = that.encodeSync(array);
804 var array = new Uint8Array([115,49,51]);
805 var result = that.encodeToStringSync(array);
819 var array = new Uint8Array([115,49,51]);
820 await that.encode(array).then(val=>{
828 var array = new Uint8Array([115,49,51]);
829 await that.encodeToString(array).then(val=>{
1552 | const groups :number[] | Obtains an array with supplementary group IDs.|