I used to write let-like expressions -- with lexical scope.

So I write my own (sad, but it will fail with multiple threads):

# Useful thing for replacing a value of
# variable only for one block of code.
# Maybe such thing already exist, I just not found it.
def with(dict, &block)
  old_values = {}

  # replace by new
  dict.each_pair do |key, value|
    key = "@#{key}"
    old_values[key] = instance_variable_get key
    instance_variable_set key, value
  end

  block.call

  # replace by old
  old_values.each_pair do |key, value|
    instance_variable_set key, value
  end
end

I search in google for such constructions (maybe additional block definitions) for ruby, but can't found it. Maybe I loose something? What ruby-people use in such cases?

PS: Sorry for my bad English, you know.

UPD: I foget to provide example of usage:

@inst_var = 1
with :inst_var => 2 do
  puts @inst_var
end
puts @inst_var

output:

2
1
link|improve this question
What is a let-like expression? – Andrew Grimm Feb 15 '11 at 23:58
@Andrew: let-expressions are used in many languages (LISP, Haskell, ML, ...). cs.cmu.edu/~rwh/introsml/core/decls.htm – tokland Feb 17 '11 at 7:54
feedback

2 Answers

up vote 2 down vote accepted

Ick provides let blocks, is that what you want?

lets(:person => Person.find(:first, ...),
     :place  => City.select { ... },
     :thing  => %w(ever loving blue eyed)) do
  "#{person.name} lives in #{place} where he is known as the '#{thing} thing.'"
end
link|improve this answer
feedback

You can't specify the value that you want to initialize, but you can declare a variable as explicitly local to that block:

x = 'external value'
puts x
[1,2,3].each do |i; x|
  x = i
  puts x
end
puts x

This will result in:

external value
1
2
3
external value
link|improve this answer
It's worth noting that i is also local to the block in this example. – zetetic Feb 16 '11 at 0:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.