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

I am confused about the difference between function calls via . and via :

> x = {foo = function(a,b) return a end, bar = function(a,b) return b end, }
> return x.foo(3,4)
3
> return x.bar(3,4)
4
> return x:foo(3,4)
table: 0x10a120
> return x:bar(3,4)
3

What is the : doing ?????

share|improve this question
1  
Related: stackoverflow.com/questions/3779671/… – finnw Feb 6 '11 at 11:38

1 Answer

up vote 28 down vote accepted

The colon is for implementing methods that pass "self" as the first parameter. So x:bar(3,4) should be the same as x.bar(x,3,4).

share|improve this answer
ah... so it's object-oriented syntactic sugar. – Jason S Feb 6 '11 at 3:02
Exactly. In the entire reference manual, the only blurb they give on this is "The colon syntax is used for defining methods, that is, functions that have an implicit extra parameter self." (5.0 manual, bottom of pdf page 19) – BMitch Feb 6 '11 at 3:24
ooh ahh... I was going to ask where the official docs were on this, but you beat me to it. nicely done. :-) – Jason S Feb 6 '11 at 15:09

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.