@deprecated Use `std::ranges::fill(u.array(), v)` instead. @brief Set all entries (including ghosts). @param[in] v Value to set all entries to (on calling rank).
| 194 | /// |
| 195 | /// @param[in] v Value to set all entries to (on calling rank). |
| 196 | [[deprecated("Use std::ranges::fill(u.array(), v) instead.")]] void |
| 197 | set(value_type v) |
| 198 | { |
| 199 | std::ranges::fill(_x, v); |
| 200 | } |
| 201 | |
| 202 | /// @brief Begin scatter (send) of local data that is ghosted on other |
| 203 | /// processes. |
nothing calls this directly
no outgoing calls
no test coverage detected