Searching for: Methods in Ruby
Inheritance
Language: Ruby

Inheritance is used to inherit another class' members, including fields and methods. A sub class extends a super class' members.

Proc
Language: Ruby

A proc is a saved block of code.

Lambda
Language: Ruby

A lambda saves a block of code for re-use. Lambdas are declared and behave similar to blocks and procs.

Blocks
Language: Ruby

A block contains code that can be executed.


< Previous Page   |   Next Page >