| 69 | |
| 70 | template <typename DataType, typename UpdateType> |
| 71 | rpl::producer<UpdateType> Changes::Manager<DataType, UpdateType>::flagsValue( |
| 72 | not_null<DataType*> data, |
| 73 | Flags flags) const { |
| 74 | return rpl::single( |
| 75 | UpdateType{ data, flags } |
| 76 | ) | rpl::then(updates(data, flags)); |
| 77 | } |
| 78 | |
| 79 | template <typename DataType, typename UpdateType> |
| 80 | void Changes::Manager<DataType, UpdateType>::drop(not_null<DataType*> data) { |
no outgoing calls
no test coverage detected