Lines Matching defs:MoveConstructible
301 struct MoveConstructible {};
304 struct MoveConstructible<false> {
305 constexpr MoveConstructible() = default;
306 constexpr MoveConstructible(const MoveConstructible&) V8_NOEXCEPT = default;
307 constexpr MoveConstructible(MoveConstructible&&) V8_NOEXCEPT = delete;
308 MoveConstructible& operator=(const MoveConstructible&) V8_NOEXCEPT = default;
309 MoveConstructible& operator=(MoveConstructible&&) V8_NOEXCEPT = default;
420 public internal::MoveConstructible<std::is_move_constructible<T>::value>,