Lines Matching defs:CopyConstructible
289 struct CopyConstructible {};
292 struct CopyConstructible<false> {
293 constexpr CopyConstructible() = default;
294 constexpr CopyConstructible(const CopyConstructible&) V8_NOEXCEPT = delete;
295 constexpr CopyConstructible(CopyConstructible&&) V8_NOEXCEPT = default;
296 CopyConstructible& operator=(const CopyConstructible&) V8_NOEXCEPT = default;
297 CopyConstructible& operator=(CopyConstructible&&) V8_NOEXCEPT = default;
419 public internal::CopyConstructible<std::is_copy_constructible<T>::value>,