[CLJ-1052] assoc should throw exception if missing val for last key Created: 29/Aug/12 Updated: 20/Oct/12 Resolved: 20/Oct/12 |
|
| Status: | Closed |
| Project: | Clojure |
| Component/s: | None |
| Affects Version/s: | Release 1.2, Release 1.3, Release 1.4 |
| Fix Version/s: | Release 1.5 |
| Type: | Defect | Priority: | Minor |
| Reporter: | Andy Fingerhut | Assignee: | Unassigned |
| Resolution: | Completed | Votes: | 8 |
| Labels: | None | ||
| Attachments: |
|
| Patch: | Code and Test |
| Approval: | Ok |
| Description |
|
https://groups.google.com/forum/?fromgroups=#!topic/clojure/k2R4OdPUCzg Suggested by Ambrose Bonnaire-Sergeant: I think assoc should throw an error when applied with uneven arguments. Currently, the "missing" value is just replaced with nil. (assoc {} :a 1 :b) |
| Comments |
| Comment by Andy Fingerhut [ 29/Aug/12 4:42 PM ] |
|
Patch clj-1052-assoc-should-throw-exc-if-missing-val-patch1.txt dated Aug 29 2012 makes assoc throw an IllegalArgumentException if more than one key is given, but the last key has no value. It includes a few simple test cases with correct and incorrect arguments to assoc. |
| Comment by Ambrose Bonnaire-Sergeant [ 29/Aug/12 5:14 PM ] |
|
IMO if the error message included something like "assoc expects even number of arguments after target, found odd number", or some mention of the number of arguments the error would be clearer to me. |
| Comment by Andy Fingerhut [ 29/Aug/12 6:06 PM ] |
|
clj-1052-assoc-should-throw-exc-if-missing-val-patch2.txt is identical to the now-removed -patch1.txt, except for the text of the exception thrown, updated as per Ambrose's suggestion. |
| Comment by Stuart Halloway [ 18/Sep/12 6:51 AM ] |
|
The patch appears correct. It does introduce a single extra (next) per iteration into the success path, although that seems unlikely to dominate the work. Wouldn't hurt to add as assessment showing this is no slower for correct programs. |
| Comment by Andy Fingerhut [ 19/Sep/12 2:03 AM ] |
|
Test platform: Mac OS X 10.6.8 + Oracle/Apple Java 1.6.0_35 Java HotSpot(TM) 64-Bit Server VM With latest Clojure master as of Sep 19 2012: Clojure 1.5.0-master-SNAPSHOT Same Clojure version, plus the patch that was screened: user=> (time (count-maps 10000000)) (average of 3 times after patch) / (average of 3 times before patch) = 1.0240 So 2.4% slowdown on average for that test case. I should add that I'm not a statistician, but note that this 2.4% difference is less than the variation in run time from one run to the next of the same experiment. Likely any real statistician would recommend collecting a lot more data before asserting there is a change in performance. |
| Comment by Andy Fingerhut [ 05/Oct/12 7:38 AM ] |
|
clj-1052-assoc-should-throw-exc-if-missing-val-patch3.txt dated Oct 5 2012 is the same as the previous patch clj-1052-assoc-should-throw-exc-if-missing-val-patch2.txt dated Aug 29 2012 except some context lines have been updated so that it applies cleanly using git. The older version will be removed in a minute. |