Takes the value out of the optional, leaving it empty \group take
| 1064 | /// Takes the value out of the optional, leaving it empty |
| 1065 | /// \group take |
| 1066 | optional take() & { |
| 1067 | optional ret = *this; |
| 1068 | reset(); |
| 1069 | return ret; |
| 1070 | } |
| 1071 | |
| 1072 | /// \group take |
| 1073 | optional take() const& { |