vote up 2 vote down star
1

Also is there a place where I could look up all the floating points ops in Scheme?

flag

67% accept rate

3 Answers

vote up 6 vote down check

I think this explains it well.

link|flag
So you could do (eqv? a +nan.0). That makes me sad - I was going to suggest (= (* a 2) a) -- much more 'interesting'... – Aaron Nov 6 at 20:45
@Aaron: Won't that return true for 0? – Amuck Nov 6 at 20:48
@Amuck - I didn't say it was a good suggestion... – Aaron Nov 6 at 22:35
vote up 0 vote down

In most programming languages, you can determine NaN values by comparing a value with itself.

(define (nan? x)
  (not (= x x)))
link|flag
heh that has interesting semantics. – Claudiu Nov 9 at 16:42
vote up 0 vote down

Have you read the RnRs document for whatever version of scheme you're using? Other than that you could try looking at your implementations manual for things that aren't in the language spec.

link|flag

Your Answer

Get an OpenID
or

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