aboutsummaryrefslogtreecommitdiffstats
path: root/common/alspan.h
Commit message (Collapse)AuthorAgeFilesLines
* Improve subspan default template argumentChris Robinson2019-08-181-2/+2
|
* Cleanup common sources' includesChris Robinson2019-07-291-3/+3
|
* Don't return a blank span when offset==size()Chris Robinson2019-06-251-2/+2
|
* Another attempt to fix MSVC 2015Chris Robinson2019-05-301-8/+6
|
* Improve span constructor requirementsChris Robinson2019-05-301-7/+10
| | | | Particularly, properly account for the const-ness of the data returned by it.
* Avoid potentially ambiguous span copy constructorChris Robinson2019-05-301-2/+2
|
* Small cleanup for is_span and is_std_arrayChris Robinson2019-05-271-8/+10
|
* Fix default constructor for static-sized spansChris Robinson2019-05-271-1/+1
|
* Remove unnecessary assignment operatorsChris Robinson2019-05-271-10/+0
|
* Implement static-sized spans, and handle overload requirementsChris Robinson2019-05-271-6/+191
| | | | | | Note that span is specialized such that a static-sized span only has a single data member, making it a suitable replacement for Type (&arg)[Size] style variables/parameters.
* Fix subspanChris Robinson2019-05-261-1/+1
|
* Add a few more methods to the span classChris Robinson2019-05-261-0/+11
|
* Store the span extents as a pair of pointersChris Robinson2019-05-241-10/+10
|
* Add a missing includeChris Robinson2019-05-231-0/+2
|
* Add a span class to act as a view to contiguous dataChris Robinson2019-05-231-0/+105