| 419 | |
| 420 | template <AttachmentParamBasic... TParams> |
| 421 | auto writes(TParams... v) -> TInlineTaskPostAttachment & |
| 422 | requires((ALLOWED_ACCESS & Allow::WRITE) != 0) |
| 423 | { |
| 424 | return _process_parameters(TaskAccessType::WRITE, STAGE, v...); |
| 425 | } |
| 426 | |
| 427 | template <AttachmentParamBasic... TParams> |
| 428 | auto writes_concurrent(TParams... v) -> TInlineTaskPostAttachment & |
nothing calls this directly
no outgoing calls
no test coverage detected