Lines Matching defs:operator
18 * Several of the DSL classes override operator= in a non-standard fashion to allow for expressions
20 * C++ containers which expect standard behavior for operator=.
22 * Wrapper<T> contains a T, where T is a DSL class with non-standard operator=, and provides
23 * standard behavior for operator=, permitting it to be used in standard containers.
42 T& operator*() {
46 T* operator->() {
54 const T& operator*() const {
58 const T* operator->() const {
62 DSLWrapper& operator=(const DSLWrapper&) = delete;
64 DSLWrapper& operator=(DSLWrapper&& other) {