dlang.org

Website:https://dlang.org/
Upvotes received0
Downvotes received0
Karma:0 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (28)

1

0 Thumbs up   0 Thumbs down

blit


Also known as BLT, blit refers to copying memory byte for byte. In C, this is referred to as a memcpy operation. The name originated with the BLT instruction on the DEC PDP-10 computer.
Source: dlang.org

2

0 Thumbs up   0 Thumbs down

ctfe


Refers to the ability to execute regular D functions at compile time rather than at run time.
Source: dlang.org

3

0 Thumbs up   0 Thumbs down

code point


In Unicode terminology, a code point is a logical character. The range of code points is 0 through 0x10FFFF. Only dchars can store code points directly; arrays of char and wchar need to use the va [..]
Source: dlang.org

4

0 Thumbs up   0 Thumbs down

cow


COW is a memory management strategy where (usually large) reference objects are copied if they are to be modified. The constant overhead of COW can be high, but may be preferable in applications tha [..]
Source: dlang.org

5

0 Thumbs up   0 Thumbs down

data race


Two or more threads writing to the same memory location. Program behavior may depend on the arbitrary sequencing of these memory accesses.
Source: dlang.org

6

0 Thumbs up   0 Thumbs down

functor


A user-defined type (struct or class) that defines the function call operator (opCall in D) so it can be used similarly to a function.
Source: dlang.org

7

0 Thumbs up   0 Thumbs down

gc


Garbage collection is the common name for the term automatic memory management. Memory can be allocated and used, and the GC will automatically free any chunks of memory no longer referred to. In c [..]
Source: dlang.org

8

0 Thumbs up   0 Thumbs down

higher-order function


A function that either accepts another function as a parameter, returns a function, or both.
Source: dlang.org

9

0 Thumbs up   0 Thumbs down

ifti


Refers to the ability to instantiate a template function without having to explicitly pass in the types to the template. Instead, the types are infered automatically from the types of the runtime argu [..]
Source: dlang.org

10

0 Thumbs up   0 Thumbs down

illegal


A code construct is illegal if it does not conform to the D language specification. This may be true even if the compiler or runtime fails to detect the error.
Source: dlang.org


To view all 28 definitions, please sign in.