hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

Šimon Tóth

std::ssize is a C++20 function template that returns the size information of the passed-in range or array as a signed integer (typically std::ptrdiff_t).

The range version std::ranges::ssize instead uses the range-style "customization point object" approach while maintaining the same functionality.

This allows for simpler code when working with raw indexes.

Compiler Explorer: compiler-explorer.com/z/631n3P

@simontoth
"This allows for simpler code when working with raw indexes."

Something I totally despise.
This is no longer C++ from the past millenium.

@DanielaKEngert Indeed, but doing things like a 3x3 view around a coordinate in a 2D grid using views is incredibly cumbersome and would involve indices anyway.