Changes between Version 65 and Version 66 of LibrariesUnderConstruction
- Timestamp:
- Jun 27, 2009, 12:11:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LibrariesUnderConstruction
v65 v66 745 745 * '''Description:''' unique_ptr is a class template smart pointer currently in the [http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2800.pdf C++0X CD1 draft]. It is intended to be a safer and more flexible replacement for auto_ptr. It represents sole (unique) ownership of a resource such as memory (like auto_ptr). 746 746 The actual C++0X unique_ptr makes use of a new C++ language feature called rvalue reference which is similar to our current reference (&), but spelled &&. This emulation is intended to capture most of the behavior of the C++0X unique_ptr but work with C++03 compilers. Furthermore this emulation makes use of boost library facilities and has been placed in the boost namespace. Though at the time of this writing, this library is not part of the official boost library release. 747 748 --------------------------------------------------------------------------------------------------- 749 == Boost.!SafeInt == 750 * '''Author(s):''' Ziv Levi and Omer Katz 751 * '''Version:''' v0.0 752 * '''State:''' Draft 753 * '''Last upload:''' 2009 June 20 754 * '''Links:''' [http://www.boostpro.com/vault/index.php?action=downloadfile&filename=SafeInt.zip&directory=&PHPSESSID=96307fee8086c06036af42fae790b449 Boost Vault] 755 * '''Categories:''' [#MathAndNumerics Math And Numerics] 756 * '''Description:''' Safe integer types 747 757 748 758 --------------------------------------------------------------------------------------------------- … … 1329 1339 * [#Boost.GGL Boost.GGL] 1330 1340 * [#Boost.Polygon Boost.Polygon] 1341 * [#Boost.SafeInt Boost.SafeInt] 1331 1342 1332 1343 ---------------------------------------------------------------------------------------------------