Difference between revisions of "C++20"

From Inkscape Wiki
Jump to navigation Jump to search
(Created page with " See also C++11, C++17. Some things that will be interesting to use once C++20 is common: {| class="wikitable" |- ! Feature !! Since !! Can use? !! Comment |- | <cod...")
 
Line 8: Line 8:
! Feature !! Since !! Can use? !! Comment
! Feature !! Since !! Can use? !! Comment
|-
|-
| <code>std::span</code>  || C++20 || not yet || Handle buffers like standard library containers without risk over overflow.
| <code>std::span</code>  || C++20 || not yet || Handle buffers like standard library containers without risk of overflow.
|}
|}

Revision as of 09:28, 17 August 2020

See also C++11, C++17.

Some things that will be interesting to use once C++20 is common:

Feature Since Can use? Comment
std::span C++20 not yet Handle buffers like standard library containers without risk of overflow.