Improve Lazy
[amazing.git] / lib / amazing / lazy.rb
blobe19e009bdcda639cf566194a36db3f2fc21ddadc
1 # Copyright 2008 Dag Odenhall <dag.odenhall@gmail.com>
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 #    http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 module Amazing
16   class Lazy
17     undef_method :to_s
18     undef_method :inspect
20     def initialize(&block)
21       @lazy_block = block
22     end
24     def method_missing(name, *args, &block)
25       __value__.__send__(name, *args, &block)
26     end
28     private
30     def __value__
31       @lazy_value ||= @lazy_block.call
32     end
33   end
34 end