Tagged Questions
The destructuring tag has no wiki summary.
8
votes
1answer
222 views
Is this a bug in Method#to_proc? (Ruby 1.8.7)
Given the following method that takes one argument:
def foo(arg); p arg; end
I can call it with an empty array:
foo([])
# prints []
I can also save it as a Method object and call that with an ...
7
votes
2answers
113 views
Why no destructing in def form?
In a let form (Clojure here) I can doing something like
(let [[u s v] (svd A)]
(do-something-with u v))
where svd returns a list of length three. This is a very natural sort of thing to do, so ...
6
votes
2answers
239 views
Destructure a map in another map?
I have the following data structure:
{:file #<File /foo.bar>, :resolution {:width 1280, :height 1024}}
I would like to write a function that destructures the :resolution key into width and ...
5
votes
2answers
177 views
How can I mix optional keyword arguments with the & rest stuff?
I have a macro that takes a body:
(defmacro blah [& body] (dostuffwithbody))
But I'd like to add an optional keyword argument to it as well, so when called it could look like either of these:
...
5
votes
2answers
2k views
Destructuring assignment in JavaScript
As can be seen in the Mozilla changlog for JavaScript 1.7 they have added destructuring assignment. Sadly I'm not very fond of the syntax (why write a and b twice?):
var a, b;
[a, b] = f();
...
4
votes
4answers
86 views
Map restructuring
In clojure, I can destructure a map like this:
(let [{:keys [key1 key2]} {:key1 1 :key2 2}]
...)
which is similar to CoffeeScript's method:
{key1, key2} = {key1: 1, key2: 2}
CoffeeScript can ...
4
votes
2answers
518 views
Destructuring forms and Compojure?
I'd thought I'd post this as I got it to work through guesswork without a real understanding of what's going on and I thought it might be helpful if someone explained it.
I understand how to get at ...
3
votes
4answers
366 views
Dynamic let List Destructuring in Clojure
I have a let statement in which I would like to dynamically destructure a list. The following is my solution:
symList ;; list of some Strings which will become the vector of Symbols to assign to
...
2
votes
2answers
90 views
Can destructuring assignment be used to effect a projection in CoffeeScript?
I'm having some trouble understanding destructuring assignment in CoffeeScript. The documentation contains a couple of examples which together seem to imply that renaming objects during assignment can ...
2
votes
1answer
268 views
“Destructuring” a Map.Entry in a Scala closure
val m: java.util.Map[String, Int] = ...
m.foreach { entry =>
val (key, value) = entry
// do stuff with key and value
}
Is there a better way to destructure the Map.Entry? I tried the ...
1
vote
2answers
110 views
Passing list of variables individually to clojure function
I have been playing around with clojure, and decided to make a higher order function that combines mapcat and list to emulate this behavior:
Clojure> (mapcat list '(1 2 3 4) '(5 6 7 8))
(1 5 2 6 ...
1
vote
2answers
103 views
How to abstract over a destructuring in F#
I have some code repetition that I really want to get rid of -
// here's some lib code the repetitive code relies on...
module Option
let definitize opts = List.choose id opts
// here's the start ...