• Return an array of integers between 0 (inclusive) and end (not inclusive)

    Parameters

    • end: number

    Returns Result<
        readonly number[],
        BaseException<{ name: "ValueException" }, ExceptionOptions>,
    >

  • Return an array of integers between start (inclusive) and end (not inclusive)

    Parameters

    • start: number
    • end: number

    Returns Result<
        readonly number[],
        BaseException<{ name: "ValueException" }, ExceptionOptions>,
    >