BUPKIS
    Preparing search index...

    Variable numberWithinRangeAssertionConst

    numberWithinRangeAssertion: AssertionFunctionSync<
        readonly [
            ZodNumber,
            readonly ["to be within", "to be between"],
            ZodNumber,
            ZodNumber,
        ],
        (
            subject: number,
            min: number,
            max: number,
        ) => { message: string } | undefined,
        readonly [
            ZodNumber,
            PhraseLiteralChoiceSlot<readonly ["to be within", "to be between"]>,
            ZodNumber,
            ZodNumber,
        ],
    > = ...

    Assertion for testing if a number is within a specific range (inclusive).

    expect(5, 'to be within', 1, 10); // passes
    expect(15, 'to be between', 1, 10); // fails