Note: this is documentation for an old release. View the latest documentation at docs.fenicsproject.org/dolfinx/v0.9.0/cpp/doxygen/d7/df6/conceptdolfinx_1_1fem_1_1impl_1_1FetchCells.html
DOLFINx 0.7.3
DOLFINx C++ interface
Loading...
Searching...
No Matches
dolfinx::fem::impl::FetchCells Concept Reference

Concepts for function that returns cell index. More...

Concept definition

template<typename F>
concept dolfinx::fem::impl::FetchCells = requires(F&& f, std::span<const std::int32_t> v) {
requires std::invocable<F, std::span<const std::int32_t>>;
{
f(v)
} -> std::convertible_to<std::int32_t>;
}
Concepts for function that returns cell index.
Definition utils.h:832

Detailed Description

Concepts for function that returns cell index.