Support arbitrary functional destructuring via -> and ->>

Description

Support arbitrary functional destructuring, that is the use of
any function in any destructuring form to help unpack data in
arbitrary ways.

The discussion began here:
http://clojure-log.n01se.net/date/2009-11-17.html#09:31c

The attached patch implements the spec described here:
http://clojure-log.n01se.net/date/2009-11-17.html#10:50a

That is, the following examples would now work:

user=> (let [(-> str a) 1] a)
"1"

user=> (let [[a (-> str b) c] [1 2]] (list a b c))
(1 "2" nil)

user=> (let [(->> (map int) [a b]) "ab"] (list a b))
(97 98)

Environment

None

Activity

Show:

Stuart Halloway December 3, 2010 at 7:03 PM

Rich: Are you assigned to this by accident? If so, please deassign yourself.

import September 28, 2010 at 12:57 PM

Comment made by: importer

richhickey said: so, don't use syntax-quote, just use clojure.core/->

import September 28, 2010 at 12:57 PM

Comment made by: importer

cgrand said: I think the current patch suffers from the problem described here http://groups.google.com/group/clojure-dev/msg/80ba7fad2ff04708 too.

import September 28, 2010 at 12:57 PM

Comment made by: importer

chouser@n01se.net said: [[file:aHWQ_W06Kr3O89eJe5afGb]]: [PATCH] Support -> and ->> in destructuring forms.

import September 28, 2010 at 12:57 PM

Details

Assignee

Reporter

Approval

Vetted

Priority

Fix versions

Created November 17, 2009 at 4:43 PM
Updated July 27, 2013 at 4:25 PM