Takes the value out of the optional, leaving it empty \group take
| 4458 | /// Takes the value out of the optional, leaving it empty |
| 4459 | /// \group take |
| 4460 | optional take() & { |
| 4461 | optional ret = *this; |
| 4462 | reset(); |
| 4463 | return ret; |
| 4464 | } |
| 4465 | |
| 4466 | /// \group take |
| 4467 | optional take() const& { |