deduction guides for std::extents

Header: <mdspan>

A deduction guide is provided for std::extents to allow deduction from integral arguments.

# Declarations

template< class... Integrals >
explicit extents( Integrals... ) -> /* see below */;

(since C++23)

# Example

This section is incompleteReason: no example

# See also