has_nothrow_assign.qbk
来自「Boost provides free peer-reviewed portab」· QBK 代码 · 共 30 行
QBK
30 行
[/ Copyright 2007 John Maddock. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).][section:has_nothrow_assign has_nothrow_assign] template <class T> struct has_nothrow_assign : public __tof {}; __inherit If T is a (possibly cv-qualified) type with a non-throwing assignment-operatorthen inherits from __true_type, otherwise inherits from __false_type. Type `T`must be a complete type.__compat If the compiler does not support partial-specialization of class templates, then this template can not be used with function types.Without some (as yet unspecified) help from the compiler, `has_nothrow_assign` will never report that a class or struct has a non-throwing assignment-operator; this is always safe, if possibly sub-optimal.Currently (May 2005) only Visual C++ 8 has the necessary compiler support to ensure that thistrait "just works".__header ` #include <boost/type_traits/has_nothrow_assign.hpp>` or ` #include <boost/type_traits.hpp>`[endsect]
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?