continuation - определение. Что такое continuation
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое continuation - определение

IN COMPUTER SCIENCE, A DATA STRUCTURE THAT REPRESENTS THE COMPUTATIONAL PROCESS AT A GIVEN POINT IN THE PROCESS'S EXECUTION
Continuations; Nonlocal goto (computer science); Escape continuation; First-class control; First-class control construct; First-class continuations; First-class continuation
Найдено результатов: 156
Continuation         
·noun That which extends, increases, supplements, or carries on; as, the continuation of a story.
II. Continuation ·noun That act or state of continuing; the state of being continued; uninterrupted extension or succession; prolongation; propagation.
continuation         
(continuations)
1.
The continuation of something is the fact that it continues, rather than stopping.
It's the coalition forces who are to blame for the continuation of the war...
N-VAR: usu with poss
2.
Something that is a continuation of something else is closely connected with it or forms part of it.
It would just be a continuation of previous visits he has made to Israel.
N-COUNT: usu sing, N of n
continuation         
continuation         
¦ noun
1. the action of continuing or state of being continued.
2. a part that is attached to and is an extension of something else.
continuation         
n.
Extension (in time or space), prolongation, protraction, continuance, perpetuation.
Continuation         
In computer science, a continuation is an abstract representation of the control state of a computer program. A continuation implements (reifies) the program control state, i.
continuations         
Continuation (album)         
ALBUM BY PHILIP BAILEY
Continuation is the debut solo album by Philip Bailey, released in 1983 on Columbia Records. The album peaked at No.
Delimited continuation         
A CONTINUATION THAT RETURNS A VALUE AND THUS MAY BE REUSED AND COMPOSED
Partial continuation; Composable continuation; Shift/reset; Shift-reset; Delimited continuations; Shift and reset
In programming languages, a delimited continuation, composable continuation or partial continuation, is a "slice" of a continuation frame that has been reified into a function. Unlike regular continuations, delimited continuations return a value, and thus may be reused and composed.
call-with-current-continuation         
CONTROL FLOW OPERATOR IN FUNCTIONAL PROGRAMMING
Call with current continuation; Callcc; Call/cc; Continuation object
<Lisp, programming> (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)

Википедия

Continuation

In computer science, a continuation is an abstract representation of the control state of a computer program. A continuation implements (reifies) the program control state, i.e. the continuation is a data structure that represents the computational process at a given point in the process's execution; the created data structure can be accessed by the programming language, instead of being hidden in the runtime environment. Continuations are useful for encoding other control mechanisms in programming languages such as exceptions, generators, coroutines, and so on.

The "current continuation" or "continuation of the computation step" is the continuation that, from the perspective of running code, would be derived from the current point in a program's execution. The term continuations can also be used to refer to first-class continuations, which are constructs that give a programming language the ability to save the execution state at any point and return to that point at a later point in the program, possibly multiple times.