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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:59:03+00:00 2026-05-31T06:59:03+00:00

I want to write a macro that uses functions from the clj-time library. In

  • 0

I want to write a macro that uses functions from the clj-time library. In one namespace I would like to call the macro like this:

(ns budget.account
  (:require [budget.time]))

(budget.time/next-date interval frequency)

The next-date macro would be defined in another file like this:

(ns budget.time
  (:require [clj-time.core :as date]))

(defmacro next-date [interval freq]
  `(~interval ~freq))

If the macro were called with the following arguments (budget.time/next-date interval freq) and interval and freq where “weeks” and “2” repectively then the macro expand would look something like this (clj-time.core/weeks 2)

Whenever I try this from the REPL it cannot resolve the namespace.

Is there a way to force the macro to resolve interval to the arguments to the clj-time namespace? What is the best way to do this?

Thanks!

  • 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-05-31T06:59:05+00:00Added an answer on May 31, 2026 at 6:59 am

    Macros return a list which is then evaluated in the namespace it is called from, not the namespace it is defined in. this is different than functions which evaluate in the namespace in which they where defined. This is because macros return the code to be run, instead of just running it.

    if i go to another namespace, for instance hello.core and expand a call to next-date i get:

    hello.core> (macroexpand-1 '(next-date weeks 2))
    (weeks 2) 
    

    then after the expansion, weeks is resolved from hello.core, in which it is of course not defined. to fix this we need the returned symbol to carry the name-space information with it.

    fortunately you can explicitly resolve a symbol in a namespace with ns-resolve. It takes a namespace and a symbol and tries to find it in the namespace returning nil if it’s not found

    (ns-resolve 'clj-time.core (symbol "weeks"))
    #'clj-time.core/weeks
    

    next your macro will be taking a symbol and a number so we can dispense with the explicit call to symbol

    (ns-resolve 'clj-time.core 'weeks)
    #'clj-time.core/weeks
    

    so now you just need a function that resolves the function and then creates a list of the resolved function followed by the number,

    (defmacro next-date [interval freq]
      (list (ns-resolve 'clj-time.core interval) freq))
    

    In the above macro all it does is make a function call which is immediatly called, so you don’t even need a macro for this:

    (defn next-date [interval freq]
      ((ns-resolve 'clj-time.core interval) freq))
    (next-date 'weeks 2)
    #<Weeks P2W>
    

    the non-macro version requires you to quote the interval because it need it not to be evaluated before you can look it up. What the macro really buys you here is not having to include the quote, at the cost of requiring all the callers to require clj-time

    of course you could also just require clj-time everywhere, but that’s not really the point.

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

Sidebar

Related Questions

I want to write an ant macro that will call the fail task if
Specifically, I want to write a macro that 1) allows me to set a
I want to write a macro for Outlook that is called when I click
I want to write a macro that compares two times that is available in
I want to write a macro to write a string, using the compile-time optimisation
I have the following Macro I want to call from within an AutoHotkey script
I have a macro that might look as follows (from boost log library) #define
I want to write a Visual Studio macro that switches off optimisations for a
I want to write a macro in C that accepts any number of parameters,
I'm trying to write a macro that can generate a set of functions that

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.