API Reference | fast-check | Property based testing framework
    Preparing search index...

    Type Alias Float64ArrayConstraints

    Float64ArrayConstraints: {
        maxLength?: number;
        minLength?: number;
        size?: SizeForArbitrary;
    } & DoubleConstraints

    Constraints to be applied on float64Array

    Type declaration

    • OptionalmaxLength?: number

      Upper bound of the generated array size

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

      Since 2.9.0

    • OptionalminLength?: number

      Lower bound of the generated array size

      0
      

      Since 2.9.0

    • Optionalsize?: SizeForArbitrary

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

      Since 2.22.0

    Since 2.9.0