Details
Assignee
UnassignedUnassignedReporter
Alex MillerAlex MillerApproval
TriagedPriority
Minor
Details
Details
Assignee
Unassigned
UnassignedReporter
Alex Miller
Alex MillerApproval
Triaged
Priority
Created July 5, 2019 at 9:06 PM
Updated July 5, 2019 at 9:12 PM
The vararg version of
concat
doesn't currently short-circuit the last seq. This makes it a little different than the 2-arg version, specifically forlazy-cat
and long sequences. Here's an example:Running this code as is correctly produces 0. Uncommenting the
#_[]
, produces aStackOverflowError
.I attached a simple fix.