Lines Matching refs:Deleter
14 template <typename Deleter = DefaultDeleter>
20 * **Deleter** 指定Deletor类,以提供具体关闭文件描述符的方法。默认为DefaultDeleter。
49 | bool | **operator**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) …
50 | bool | **operator**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) …
51 | bool | **operator!=**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局不等运算符重载函数,比…
52 | bool | **operator==**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局相等运算符重载函数,比…
53 | bool | **operator>**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局大于运算符重载函数,比较…
54 | bool | **operator>=**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局大于等于运算符重载函数…
58 Deleter默认实现类,包含关闭文件描述符的静态方法。
66 Deleter默认实现类,包含关闭文件描述符的静态方法。
68 **提示**: 管理封装类UniqueFdAddDeletor在取消对当前描述符的管理,同时又没有其他管理封装类接替管理该描述符时,`Deleter::Close()`方法将被调用。
70 Deleter类用于关闭文件描述符,可以重新实现以自定义对文件描述符的关闭行为。