Hi Renada,

The magic function you're looking for is called "frequencies":
https://clojuredocs.org/clojure.core/frequencies

You could look at its implementation if you want to know how to implement
this :)


lvh

On Wed, May 16, 2018 at 12:08 PM, Renata Soares <[email protected]>
wrote:

> Hello,
>
> I have this vec called *inviteds* [:2 :4]
>
> and I want to produce something like (hash-map :2 1, :4 1)
>
> (doall (map #(hash-map % 1) *inviteds*))
>
> but returns ({:2 1} {:4 1})
>
> How can I produce the same result as (hash-map :2 1, :4 1) with doall (or
> other similar function)?
>
> Thanks!
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to [email protected]
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to