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

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

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

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

Что (кто) такое first-class continuations - определение

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
Найдено результатов: 12049
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.
continuations         
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         
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.
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.
First-class function         
PROGRAMMING LANGUAGE FEATURE THAT ALLOWS MANIPULATING FUNCTIONS LIKE OTHER VALUES
First class function; First class procedures; First class procedure; First Class Functions; First-class functions; Function reference; First-class procedure; First class functions
In computer science, a programming language is said to have first-class functions if it treats functions as first-class citizens. This means the language supports passing functions as arguments to other functions, returning them as the values from other functions, and assigning them to variables or storing them in data structures.
First-class citizen         
TERM IN PROGRAMMING LANGUAGE DESIGN
First-class value; Second-class object; First-class values; First-class entity (computing); First-class citizen (computing); First-class (object); First class object; First-class datatype; First-class data type; First-class entity; First-class object; First class citizen; Second-class value; Third-class object; First-class type; User:恒温/First-class type
In programming language design, a first-class citizen (also type, object, entity, or value) in a given programming language is an entity which supports all the operations generally available to other entities. These operations typically include being passed as an argument, returned from a function, and assigned to a variable.
First class travel         
  • The Business Class car on Shenzhen Metro Line 11
  • First class car on the ''[[Berlin-Warszawa-Express]]''
  • Class 221 ''Super Voyager'']]
  • First Class compartment on the [[Bluebell Railway]]
  • First class on Regional-Express in Berlin
  • The "Gold Class" section of a Dubai Metro train
  • [[Etihad Airways]]' "The Residence" suite
  • First Class seating on an East Rail line carriage
  • [[Renfe Operadora]] [[AVE]] first class seat
  • Exterior of a second-generation Luxury class car (K1 0 19 46)
  • bilevel "Green Cars"]] per train
  • The "Green Car" logo
PUBLIC TRANSPORT
First-class travel; List of first class commuter transport services; First class commuter travel; 1st Class travel; First class commuter transport; First Class Travel
First class is the most luxurious and most expensive travel class of seats and service on a train, passenger ship, airplane, bus, or other system of transport.first class.

Википедия

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.