R
Robert Dober
Hi list
I just wrote
o = super( *args)
my_init.bind( o ).call( *args )
o
I write code of this patter way too often, I was just thinking that I
really would like to have
module Kernel
def with_value_return_value a_value, &blk
blk.call a_value
end
end
I just wrote
o = super( *args)
my_init.bind( o ).call( *args )
o
I write code of this patter way too often, I was just thinking that I
really would like to have
module Kernel
def with_value_return_value a_value, &blk
blk.call a_value
end
end