Boost C++ 库

...是世界上最受推崇、设计最精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

basic_file::operator= - Boost C++ 函数库
PrevUpHomeNext

从另一个 basic_file 进行移动赋值。

basic_file & operator=(
    basic_file && other);
  » more...

从另一个执行器类型的 basic_file 进行移动赋值。

template<
    typename Executor1>
constraint_t< is_convertible< Executor1, Executor >::value, basic_file & > operator=(
    basic_file< Executor1 > && other);
  » more...

PrevUpHomeNext