There's no documentation for this item.
Source Code
# File binding_of_caller.rb, line 7 def Continuation.create(*args, &block) # :nodoc: cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?} result ||= args return *[cc, *result] end
<code/>and<pre/>for code samples.