Find link

language:

jump to random article

Find link is a tool written by Edward Betts.

searching for Alias method 2 found (7 total)

alternate case: alias method

Monkey patch (891 words) [view diff] no match in snippet view article find links to article

has no effect, unless monkey patches are written with a pattern like alias_method_chain. They create a discrepancy between the original source code and
Function composition (computer science) (2,164 words) [view diff] no match in snippet view article
Proc def compose(other_fn) ->(*as) { other_fn.call(call(*as)) } end alias_method :+, :compose end f = ->(x) { x * 2 } g = ->(x) { x ** 3 } (f + g).call(12)