Float32ArrayConstraints: {
    maxLength?: number;
    minLength?: number;
    size?: SizeForArbitrary;
} & FloatConstraints

Constraints to be applied on float32Array

Type declaration

  • Optional maxLength?: number

    Upper bound of the generated array size

    Default Value

    0x7fffffff — defaulting seen as "max non specified" when defaultSizeToMaxWhenMaxSpecified=true

    Remarks

    Since 2.9.0

  • Optional minLength?: number

    Lower bound of the generated array size

    Default Value

    0
    

    Remarks

    Since 2.9.0

  • Optional size?: SizeForArbitrary

    Define how large the generated values should be (at max)

    Remarks

    Since 2.22.0

Remarks

Since 2.9.0