( schema: Schema.brand<Schema.instanceOf<Uint8Array<ArrayBuffer>>, B> )
| 753 | * @since 4.0.0 |
| 754 | */ |
| 755 | export const UuidV4BytesWithGenerate = <B extends string>( |
| 756 | schema: Schema.brand<Schema.instanceOf<Uint8Array<ArrayBuffer>>, B> |
| 757 | ): Schema.withConstructorDefault<Schema.brand<Schema.instanceOf<Uint8Array<ArrayBuffer>>, B>> => |
| 758 | schema.pipe(Schema.withConstructorDefault(Effect.sync(() => Uuid.v4Bytes()))) |
| 759 | |
| 760 | /** |
| 761 | * A field that represents a binary UUID v4 that is generated on inserts. |
no test coverage detected