MCPcopy Index your code
hub / github.com/Effect-TS/effect / UUID

Class UUID

packages/effect/src/Schema.ts:4877–4888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4875 * @since 3.10.0
4876 */
4877export class UUID extends String$.pipe(
4878 pattern(uuidRegexp, {
4879 schemaId: UUIDSchemaId,
4880 identifier: "UUID",
4881 jsonSchema: {
4882 format: "uuid",
4883 pattern: uuidRegexp.source
4884 },
4885 description: "a Universally Unique Identifier",
4886 arbitrary: (): LazyArbitrary<string> => (fc) => fc.uuid()
4887 })
4888) {}
4889
4890/**
4891 * @category schema id

Callers

nothing calls this directly

Calls 2

patternFunction · 0.85
pipeMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…