Completed
Details
Assignee
UnassignedUnassignedReporter
Alexander TaggartAlexander TaggartApproval
OkPatch
Code and TestPriority
MinorAffects versions
Fix versions
Details
Details
Assignee
Unassigned
UnassignedReporter
Alexander Taggart
Alexander TaggartApproval
Ok
Patch
Code and Test
Priority
Affects versions
Fix versions
Created April 2, 2011 at 12:45 AM
Updated October 25, 2013 at 10:03 PM
Resolved October 25, 2013 at 10:03 PM
The behavior of
byte-array
andshort-array
is inconsistent with the other<type>-array
functions and with theinto-array
function when invoked with types other than byte or short. All of the other cases upcast to Number, then extract the primitive value, allowing this operation to succeed (assuming the value is in range).byte-array
andshort-array
throw a ClassCastException.Example:
into-array
(viaRT.seqToTypedArray
) and the other<type>-array
functions all upcast to Number viaNumbers.<type>_array
), then obtain the proper primitive value.Numbers.byte-array
andNumbers.short-array
do casts directly to Byte and Short (yielding the ClassCastException).The attached patch makes the Byte and Short cases match the other types and the
into-array
behavior. Tests are included. The submitter is a contributor.Patch: clj766-2.patch
Screened by: Alex Miller