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

  • Home
  • SEARCH
  • 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 7918065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:22:48+00:00 2026-06-03T15:22:48+00:00

How should this python be expressed gl_enums = … # map from name to

  • 0

How should this python be expressed

gl_enums = ... # map from name to values for opengl enums
# use with gl_enums["enum name"]

in clojure? This works, but is it right?

(def gl-enums ...) ; map from name to values for opengl enums
(defn gl-enum [k] (or (gl-enums k) (throw (SomeException.))))
; use with (gl-enum :enum-name)

edit: for clarification, this question is about the exception-throwing part, not the map-defining part

  • 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-03T15:22:50+00:00Added an answer on June 3, 2026 at 3:22 pm

    Your original example is OK. Two approaches you are also likely to come across:

    ;; not very idiomatic
    (defn example
      [m]
      (if (contains? m :name)
        (:name m)
        (throw (IllegalArgumentException. (format "key %s is missing" :name)))))
    
    ;; idiomatic
    (defn example
      [m]
      (if-let [v (:name m)]
        v
        (throw (IllegalArgumentException. (format "key %s is missing" :name)))))
    

    More on clojure.core/if-let
    More on clojure.core/contains?

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

Sidebar

Related Questions

Right, perhaps I should be using the normal Python lists for this, but here
I am trying to use QUnit with a Meteor app. Should this be possible?
I learned from the websitethat I should add the code declaration in python when
I have one question about sys.setrecursionlimit() From the python docs this function: Set the
I have following python code: a = [0,1,2,3,4,5] del(a[2:7]) Should not this give IndexError?
I'm new to Python, so I'm not sure how I should do this. I
Should this be as easy as Trace.WriteInformation() in a C# file that is in
EDIT: My main code no longer works, should this function work? <script type=text/javascript src=jquery-1.7.2.js></script>
This should not be so complicated: I am using Easiest Tooltip and Image Preview
This should be pretty simple, but I can't seem to get it. I have

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.