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 (737 words) [view diff] no match in snippet view article find links to article

have no effect, unless monkey patches are written with a pattern like alias_method_chain. Confusion A monkey patch creates a discrepancy between the source
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)