Copy-on-write: Difference between revisions

Content deleted Content added
link to related articles, etc.
Other applications of copy-on-write: citation needed for C++11 inhibiting CoW
Line 26:
==Other applications of copy-on-write==
COW is also used outside the kernel, in [[Library (computer science)|library]], [[Application software|application]] and [[System software|system]] code. The [[String (C++)|string]] class provided by the [[C++ standard library]], for example, was
specifically designed to allow copy-on-write implementations in the C++98/03 standards{{Citation needed|date=September 2013}}, but not in the newer C++11 standard{{Citation needed|date=August 2014}}:
 
<source lang="cpp">