summaryrefslogtreecommitdiffhomepage
path: root/mrblib/kernel.rb
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-20 15:41:22 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-20 15:41:22 +0900
commitb11d4647e91bdcd6dfaecfaccdc4c350b1bc413f (patch)
treec1955f7b36ca4083ad50952021db71b12a712dfa /mrblib/kernel.rb
parente9231bca7a5fafa67e0a15aa657e727e46a1363a (diff)
downloadmruby-b11d4647e91bdcd6dfaecfaccdc4c350b1bc413f.tar.gz
mruby-b11d4647e91bdcd6dfaecfaccdc4c350b1bc413f.zip
ISO conforming lambda
Diffstat (limited to 'mrblib/kernel.rb')
-rw-r--r--mrblib/kernel.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/mrblib/kernel.rb b/mrblib/kernel.rb
index c263ec403..f29a80973 100644
--- a/mrblib/kernel.rb
+++ b/mrblib/kernel.rb
@@ -3,17 +3,6 @@
#
# ISO 15.3.1
module Kernel
-
- ##
- # Takes the given block, create a lambda
- # out of it and +call+ it.
- #
- # ISO 15.3.1.2.6
- def self.lambda(&block)
- ### *** TODO *** ###
- block # dummy
- end
-
##
# Calls the given block repetitively.
#
@@ -43,15 +32,6 @@ module Kernel
end
##
- # Alias for +Kernel.lambda+.
- #
- # ISO 15.3.1.3.27
- def lambda(&block)
- ### *** TODO *** ###
- block # dummy
- end
-
- ##
# Alias for +Kernel.loop+.
#
# ISO 15.3.1.3.29