First page Back Continue Last page Overview Graphics

Singleton-Methoden


Notes:

Äquivalent zu

def a.count
self.size
end

ist

class << a
def count
self.size
end
end