MCPcopy
hub / github.com/Effect-TS/effect / Uint8Array$

Class Uint8Array$

packages/effect/src/Schema.ts:6222–6232  ·  view source on GitHub ↗

@ignore

Source from the content-addressed store, hash-verified

6220
6221/** @ignore */
6222class Uint8Array$ extends transform(
6223 Array$(Uint8).annotations({
6224 description: "an array of 8-bit unsigned integers to be decoded into a Uint8Array"
6225 }),
6226 Uint8ArrayFromSelf,
6227 {
6228 strict: true,
6229 decode: (i) => Uint8Array.from(i),
6230 encode: (a) => Array.from(a)
6231 }
6232).annotations({ identifier: "Uint8Array" }) {}
6233
6234export {
6235 /**

Callers

nothing calls this directly

Calls 3

transformInterface · 0.70
Array$Function · 0.70
annotationsMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…