Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8238909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:58:09+00:00 2026-06-07T19:58:09+00:00

What is an idiomatic way to convert a sequence to a set in Clojure?

  • 0

What is an idiomatic way to convert a sequence to a set in Clojure? E.g what do I fill in at the dots?

(let s [1 1 2 2 3 3]
  ...)

So that it produces:

#{1 2 3}

I come up with:

(let [s [1 1 2 2 3 3]]
  (loop [r #{} s s]
    (if (empty? s) r (recur (conj r (first s)) (rest s)))))

But that seems not the way to go? Is there a function already that does this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T19:58:11+00:00Added an answer on June 7, 2026 at 7:58 pm

    most collections have a function that produces them form anything seqable:

    (set [1 1 2 2 3 3])
    #{1 2 3}
    

    for more interesting cases the into function is good to know about:

    (into #{1}  [2 2 3 3])
    #{1 2 3}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the Clojure-idiomatic way to convert a data structure to a Java collection,
In clojure, what is the idiomatic way to convert a keyword: :some-keyword to a
What's the most idiomatic way to convert a set of integers into a set
What's the most idiomatic way to write a class definition? There's no way that
Is there an idiomatic way to get available namespaces that can be used? (all-ns)
I'm looking for an idiomatic way to get dynamically scoped variables in Clojure (or
What would be an idiomatic way to represent a tree in Clojure? E.g.: A
In C++ what is the idiomatic way to define operator= on a class that
Is there a idiomatic way of removing elements from PATH-like shell variables? That is
I am trying to find a Clojure-idiomatic way to initialize a Java object. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.