翻訳と辞書
Words near each other
・ caliban
・ calico
・ california state university san marcos
・ call unix
・ call-by-name
・ call-by-need
・ call-by-reference
・ call-by-value
・ call-by-value-result
・ call-level interface
call-with-current-continuation
・ call/cc
・ callback
・ callee
・ caller id
・ calling convention
・ callware
・ cals
・ caltech intermediate form
・ cam


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

call-with-current-continuation : FOLDOC
call-with-current-continuation
(call/cc) A Lisp control function that takes a function f as its argument and calls f, passing it the current continuation, which is itself a function, k. k, which represents the context of the call to call/cc, takes the result of call/cc (which is the result of f) and returns the final result of the whole program. Thus if, for example, the final result is to print the value returned by call/cc then anything passed to k will also be printed.
E.g, in Scheme:
(define (f k)
(k 1)
(k 2)
3)

(display (call-with-current-continuation f))

Will display 1.
(2001-04-27)



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.