Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Personally I would just take the container as is like template <typename Container2D> func(Container2D cont) and if you want to you can use concepts to enforce the interface you want. Commented Nov 3, 2024 at 1:07
  • @NathanOliver: Though in that case you probably want to receive by reference or const reference; std::span is cheap to pass, actual containers would involve copies if not received by reference. Commented Nov 3, 2024 at 14:34