Is it possible to set a default value to some of arguments in Racket?

Like so in Python:

def f(arg=0)
    ...
link|improve this question

65% accept rate
feedback

1 Answer

up vote 9 down vote accepted

Yes; take a look at: declaring optional arguments.

For example:

(define (f [arg 0])
  (* arg 2))

Racket also supports functions with keyword arguments. The link should lead to documentation that talks about them too. Good luck!

link|improve this answer
Btw, do you think it's a good idea to use optional arguments for passing state in recursive functions? – Halst Aug 20 '11 at 17:47
Sometimes, but it often backfires on me. If the optional argument is some accumulator, for example, then if I forget to pass the accumulator in my recursive call somewhere, well, oops. :) – dyoo Aug 20 '11 at 17:50
Thanks for your insight! – Halst Aug 20 '11 at 17:52
wrt the use of optional arguments for storing state in recursive functions, I see that as a slight evil in that you're abstraction is leaky. I prefer the pattern with an inner-define like so: (define (foo a b c) (define (foo a b c state) #|...|#) (foo a b c 'init-state)) – Martin Neal Aug 23 '11 at 20:51
That what I was thinking about. But, damn, (define (foo a b c [state '()])) is so much easier to type :) – Halst Aug 23 '11 at 23:07
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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