Files
o3de/Code/Framework/AzCore/Tests
lumberyard-employee-dm b9824ed172 Updated all array_view uses with the C++20 span. (#7157)
* Updated all array_view uses with the C++20 span.

The updates were done in the following order
1. `AZStd::array_view<([^>].+)\* ?>`  -> `AZStd::span<\1 const>`
2. `AZStd::array_view<(?:const )(.+)>` -> `AZStd::span<const \1>`
3. `AZStd::array_view` -> `AZStd::span`

Removed the implementation of array_view.

Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com>

* Added missing whitespace between `const` and the typename for spans.

Updated the ShaderTest comparison of the ShaderResourceGroupLayout span
to compare the sizes as well

Updated comments on some of the methods that stated that they return "an
array" to mention they return "a span".

Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com>
2022-01-26 16:15:47 -06:00
..
2021-08-16 16:02:53 -07:00
2021-10-05 15:12:53 -05:00
2022-01-05 14:23:32 -08:00
2022-01-23 22:29:03 +01:00
2021-12-01 16:50:45 -08:00
2022-01-20 13:00:02 -08:00
2021-08-20 14:48:42 -07:00
2021-08-20 14:48:42 -07:00
2022-01-20 15:01:53 -08:00
2021-08-20 20:36:11 -07:00
2021-09-08 16:50:57 -07:00
2021-12-02 17:15:46 -08:00
2022-01-11 00:47:00 +01:00