Concept
Thunks 0
A thunk is a programming concept that refers to a function or a delayed computation used to defer the execution of a piece of code until its result is needed, optimizing performance and resource usage. Thunks are commonly used in lazy evaluation, asynchronous programming, and to manage side effects in functional programming paradigms.
Relevant Degrees