The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
21 views

Is it possible to destructure a map in a bind?

Is it possible to do this in one function: (binding [*configs* (merge default-configs configs)] (let [{:keys [login url max-pages]} *configs*] .. When I tried this: (binding [{:keys ...
6
votes
2answers
71 views

Why is it possible to pass in key value pairs to a function that destructures a map?

I thought I understood destructuring, but I was reading a clojure blog and this confused me. If you have a function written like: (defn f [& {:keys [foo bar]}] (println foo " " bar)) Why ...
2
votes
1answer
69 views

destructure vector by index

I'd like to know if there is a way to destructure a vector by index. Basically, a shorthand that would allow me to avoid: (defn f [v] (let [x (nth v 4) y (nth v 5)] (println x ...
1
vote
1answer
48 views

Left to Right Binding Order in Let Form

I am working through an example of destructuring in the Joy of Clojure, and I cam across an example that surprised me. Both of these produce the same output: (let [range-vec (vec (range 10)) [a b c ...
3
votes
1answer
103 views

In Clojure, is there an idiomatic way of destructuring a map in a macro definition?

I've been using noir in a web project and I came up to the point of restricting access to users, depending on their access level (and sublevel) to all possible routes defined by a defpage macro. So ...
1
vote
2answers
56 views

object/array comparison shorthand in coffeescript?

CoffeeScript has a lot of useful shorthand regarding arrays and objects with comprehensions and destructuring. is there a quick shorthand for comparing entire objects or multiple properties thereof? ...
2
votes
1answer
199 views

Destructuring Maps in clojure — unused keys

I have defined a function which takes a map. I thought to use destructuring to access the values. However, I also want to check whether there are any used keys. So, for example something like... ...
3
votes
1answer
143 views

Is there a Clojure function which takes a map and returns a sequence of alternating keys and values?

Given a map {:a 1 :b [2,3]}, is there a built-in function which would return the sequence (:a 1 :b [2,3]). The use case is applying an options map to a function which does map-destructured binding on ...
7
votes
1answer
720 views

Destructure parameter of a Clojure function while keeping the original value.

Can you destructure a function parameter but still have the original available for use? The way I'm doing it now is just using a let form inside the function body, but I wondering if there was a ...
1
vote
1answer
134 views

From a set to a sorted set

I'm hitting some kind of mental roadblock related to destructuring... (sorted-set 4 2 5) gives: #{2 4 5} But How I can get that same sorted set from: ((fn [???] (sorted-set ???)) [4 2 5]) or ...
2
votes
1answer
36 views

Where can I get info on the object parameter syntax for javascript functions?

If I want to call a function like this: moo({ a: 4 }); Normally i'd have to phrase my function definition like this: function moo(myArgObj) { print(myArgObj.a); } But this awesome syntax is ...
3
votes
1answer
124 views

Constant declaration with block

Recently I was looking into Firefox Add-on Builder SDK sources, and stumbled on such constants declaration: const { getCodeForKey, toJSON } = require("../../keyboard/utils"); I could find ...
2
votes
1answer
110 views

Is destructuring of macro parameters “really needed”?

I understand that destructuring in LISP macro parameters is a nice thing to have; I am wondering whether it is essential. As an example, (defmacro m1 (a) (car a)) and (defmacro m2 ((a1 a2)) a1) ...
5
votes
4answers
195 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 ...
2
votes
2answers
689 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
138 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 ...
7
votes
2answers
298 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 ...
2
votes
2answers
363 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 ...
3
votes
1answer
685 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 ...
13
votes
1answer
519 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 ...
6
votes
2answers
728 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
971 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
735 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 ...
6
votes
2answers
424 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: ...
9
votes
2answers
3k 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(); ...