[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

type at rubycentral?

Daniel Schüle

3/8/2006 3:00:00 PM

Hello


Returns the number of arguments required by the block. If the block
takes no arguments, returns -1. If it takes one argument, returns -2.
Otherwise, returns a positive argument count unless the last argument is
prefixed with *, in which case the argument count is negated. The number
of required arguments is anInteger for positive values, and ( anInteger
+1).abs otherwise.

Proc.new {||}.arity » 0
Proc.new {|a|}.arity » -1 ### <<< error?
Proc.new {|a,b|}.arity » 2
Proc.new {|a,b,c|}.arity » 3
Proc.new {|*a|}.arity » -1
Proc.new {|a,*b|}.arity » -2


I would say it's a typo

Regards, Daniel

4 Answers

Daniel Schüle

3/8/2006 3:02:00 PM

0

and one case is missing there

irb(main):169:0> proc{}.arity
=> -1

which means, all paramers are ignored(right?)

Daniel Schüle

3/8/2006 5:23:00 PM

0

james_b

3/8/2006 6:13:00 PM

0

Schüle Daniel wrote:
> I forgot to copy&paste the link
>
> http://www.rubycentral.com/book/ref_c_proc.html#...
>
>
>


I believe that page refers to Ruby 1.6.

See the docs for 1.8.4:

http://www.ruby-doc.org/core/classes/Proc.ht...



--
James Britt

http://web2.0val... - We're the Dot in Web 2.0
http://refreshing... - Design, technology, usability
http://yourelevato... - Finding Business Focus
http://www.jame... - Playing with Better Toys


Logan Capaldo

3/8/2006 6:29:00 PM

0


On Mar 8, 2006, at 10:08 AM, Schüle Daniel wrote:

> and one case is missing there
>
> irb(main):169:0> proc{}.arity
> => -1
>
> which means, all paramers are ignored(right?)
>
>

Negative arities indicate the _minimum_ number of args to a proc that
takes a variable number of args

min args = abs(arity + 1) if arity < 0 otherwise arity


so a proc with no arg speciafication is the same as proc { |*args| }.
(You just can't get at the argument list)

proc { |a, *b| } will have an arity of -2

abs(-2 + 1) = 1 so it must be passed at least one arg

proc { |a, b, c| } will have an arity of 3

proc { || } will have an artity of zero (contrasted with proc { } )