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 8026251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:25:48+00:00 2026-06-04T23:25:48+00:00

I have a sequence of records/classes, and I map over that sequence with new

  • 0

I have a sequence of records/classes, and I map over that sequence with new and expect to get a sequence of instances of those records/classes. I know new is a special form, but I was expecting Clojure to do The Right Thing in this case.

But this does not work:

(map new [SomeClass1 SomeClass2 SomeClass3])

Neither does this.

(map #(new %) [SomeClass1 SomeClass2 SomeClass3])

Similar code works in Factor.

{ SomeClass1 SomeClass2 SomeClass3 } [ new ] map

What would be the right way to do this in Clojure? (I expect it won’t involve Class.newInstance ugliness.)

Edit:

The following works, but is perhaps slower than necessary. (I don’t know for sure. I would appreciate some information on this.)

(map #(eval `(new ~%)) [SomeClass1 SomeClass2 SomeClass3])

Also I am looking for something more elegant.

  • 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-04T23:25:49+00:00Added an answer on June 4, 2026 at 11:25 pm

    because special-formes are well… special they are not first class and don’t compose as proper functions do, you can solve this with eval and macros:

    a solution using eval:

    (defn fnew [c] (eval `(new ~c))) 
    hello.core> (map fnew ['Exception 'java.lang.String])
    (#<Exception java.lang.Exception> "")
    

    and a version that takes arguments to the constructors:

    (defn fnew [c] (eval `(new ~@c))) 
    
    hello.core> (map fnew ['(Exception) '(java.lang.String "I am a contructor argument")])
    (#<Exception java.lang.Exception> "I am a contructor argument")
    
    (map fnew [ [Exception] [(class "foo") "I am a contructor argument"]])
    (#<Exception java.lang.Exception> "I am a contructor argument")
    

    and here is a macro example

    hello.core> (defmacro newify [classes] (apply vector (for [c classes] `(new ~c))))
    #'hello.core/newify
    
    hello.core> (macroexpand '(newify [java.lang.String Exception]))
    [(new java.lang.String) (new Exception)]
    
    hello.core>  (newify [java.lang.String Exception])
    ["" #<Exception java.lang.Exception>]
    

    The macro version is likely more efficient while the eval version is more flexible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that records a sequence of actions with a field that
I was wondering if this was possible... I have a sequence of variables that
I have an xts sequence of stock trade events that I want to process
I have an application that requires a sequence to be present in the database.
Say, we have a set of records that should be ordered with a non-trivial
I have a sequence of sql queries that result in very large datasets that
Say that I have a table with a bunch of records, which I want
In SQL Server 2012 (Denali), we have a new feature Sequence . Consider the
I have a sequence of ActiveRecord objects that I want to cascade destroy but
I have records in my database that are searched with user input, and initially,

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.