Changes between Version 16 and Version 17 of Language


Ignore:
Timestamp:
05/18/23 20:51:20 (3 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Language

    v16 v17  
    486486=== `$default_value`
    487487
     488Assigns an object the default value of its type.  Signature:
     489{{{
     490$system void $default_value(void *ptr);
     491}}}
     492Assigns the default value to the object pointed to by `ptr`.
     493The default value is determined under the assumption that the object has static storage duration.
     494These default values are specified by the C standard for C types.
     495For example, 0 is the default value for a numeric type.
     496
    488497=== `$elaborate_domain`
    489498