range function has missing documentation

Description

The range function's documentation does indicate the following usage:

(range 10 0 -1) -> (10, 9, 8, 7, 6, 5, 4, 3, 2, 1)

Current doc:

Its also possible to step down rather than up, for example counting
backwards from 10 by -1: (range 10 0 -1).

Proposed:

Add final sentence: "Step may be negative."

Patch: clj-704.patch

Environment

All

Attachments

1

Activity

Show:

Alex Miller October 5, 2021 at 5:12 PM

don't think this is necessary

Andy Fingerhut June 14, 2014 at 8:54 PM

In Clojure 1.6, it appears that it may be more accurate if the last two sentences in the doc string were modified. range's doc string is currently:

Returns a lazy seq of nums from start (inclusive) to end
(exclusive), by step, where start defaults to 0, step to 1, and end to
infinity. When step is equal to 0, returns an infinite sequence of
start. When start is equal to end, returns empty list.

It might be more accurate to say:

Returns a lazy seq of nums from start (inclusive) to end
(exclusive), by step, where start defaults to 0, step to 1, and end to
infinity. When start is equal to end, returns empty list. When step
is equal to 0 and start and end differ, returns an infinite sequence of
start.

Andy Fingerhut June 14, 2014 at 8:47 PM

The last time range was modified was due to ticket CLJ-1018. See the attached patch there, which I believe is the one that was applied after Clojure 1.5 but before Clojure 1.6.

Perhaps that change does not do what it claimed to do in the doc string. I haven't looked at it in detail yet.

Plínio Balduino June 14, 2014 at 4:57 PM

I cannot reproduce this: "When step is equal to 0, returns an infinite sequence of start."

https://github.com/clojure/clojure/blob/master/src/clj/clojure/core.clj#L2726-L2729

Is this correct?

Alex Miller June 14, 2014 at 1:34 PM

Go for it!

Won't Fix

Details

Assignee

Reporter

Labels

Approval

Prescreened

Patch

Code

Priority

Affects versions

Created January 5, 2011 at 1:32 AM
Updated October 5, 2021 at 5:12 PM
Resolved October 5, 2021 at 5:12 PM