Skip to main content

Class: VFloat64<Type, IsOptional>

For AI agents: see llms.txt for the complete documentation index. Markdown versions are available by adding .md to a page URL or requesting Accept: text/markdown.

values.VFloat64

The type of the v.float64() validator.

Type parameters​

NameType
Typenumber
IsOptionalextends OptionalProperty = "required"

Hierarchy​

  • BaseValidator<Type, IsOptional>

    ↳ VFloat64

Constructors​

constructor​

• new VFloat64<Type, IsOptional>(«destructured»)

Type parameters​

NameType
Typenumber
IsOptionalextends OptionalProperty = "required"

Parameters​

NameType
«destructured»Object
› isOptionalIsOptional

Inherited from​

BaseValidator<Type, IsOptional>.constructor

Defined in​

values/validators.ts:54

Properties​

type​

• Readonly type: Type

Only for TypeScript, the TS type of the JS values validated by this validator.

Inherited from​

BaseValidator.type

Defined in​

values/validators.ts:37


fieldPaths​

• Readonly fieldPaths: never

Only for TypeScript, if this an Object validator, then this is the TS type of its property names.

Inherited from​

BaseValidator.fieldPaths

Defined in​

values/validators.ts:42


isOptional​

• Readonly isOptional: IsOptional

Whether this is an optional Object property value validator.

Inherited from​

BaseValidator.isOptional

Defined in​

values/validators.ts:47


isConvexValidator​

• Readonly isConvexValidator: true

Always "true".

Inherited from​

BaseValidator.isConvexValidator

Defined in​

values/validators.ts:52


kind​

• Readonly kind: "float64"

The kind of validator, "float64".

Defined in​

values/validators.ts:126

Methods​

optional​

▸ optional(): VFloat64<undefined | Type, "optional">

Allow this field to be validated as absent.

Returns​

VFloat64<undefined | Type, "optional">

Overrides​

BaseValidator.optional

Defined in​

values/validators.ts:134