Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm learning clojure and have a very basic question: given that clojure has type inference, how can you tell what class was inferred?

For instance, these would each result in different data types:

(2)
(/ 2 3)
(/ 2.0 3)

Is there some kind of class function that will return the data type? Also, is there a normal way of casting something to be a specific type? So in the second example above, what would I do if I wanted the result to be float?

share|improve this question

2 Answers

up vote 20 down vote accepted

There is a type function in the clojure.core library.

user> (type 2)
java.lang.Integer

user> (type (/ 2 3))
clojure.lang.Ratio

user> (type (/ 2.0 3))
java.lang.Double

If you want to convert a given number into a float then use float.

user> (float 10)
10.0
share|improve this answer
1  
Dang! type is not on the Clojure Cheat Sheet ( <clojure.org/cheatsheet>; ) so I didn't find it :( – Carl Smotricz Jan 6 '10 at 11:47
4  
There is also class. type basically checks the metadata (if any) first for the :type key. Then as fallback class is used. – kotarak Jan 6 '10 at 12:33
Very true! It also very useful. – aatifh Jan 6 '10 at 12:36

similarly you may not need to cast, because the following works:

user> (Double/toString (/ 2 3))
"0.6666666666666667
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.