aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2020-08-28 10:53:19 -0700
committerGitHub <noreply@github.com>2020-08-28 10:53:19 -0700
commit21b69e5ccedb036ea3c0c6275519cbe51a8dbc03 (patch)
treee05e7e1a54cbb7f754df31958959e1f6b0c77fdf
parentd58e50c6f426c266823a7ddce1052d7b5574dd95 (diff)
downloadplatform_external_Microsoft-GSL-21b69e5ccedb036ea3c0c6275519cbe51a8dbc03.tar.gz
platform_external_Microsoft-GSL-21b69e5ccedb036ea3c0c6275519cbe51a8dbc03.tar.bz2
platform_external_Microsoft-GSL-21b69e5ccedb036ea3c0c6275519cbe51a8dbc03.zip
Updating span section of Supported Features table.
Added a link to the span section to point to the "gsl::span and std::span" page in the wiki.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8f5edf8..9063596 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ Feature | Supported? | Description
owner | &#x2611; | an alias for a raw pointer
not_null | &#x2611; | restricts a pointer / smart pointer to hold non-null values
strict_not_null | &#x2611; | a stricter version of `not_null` with explicit constructors
-span | &#x2611; | a view over a contiguous sequence of memory. Based on the standardized verison of `std::span`, however `gsl::span` enforces bounds checking.
+span | &#x2611; | a view over a contiguous sequence of memory. Based on the standardized verison of `std::span`, however `gsl::span` enforces bounds checking. See the [wiki](https://github.com/microsoft/GSL/wiki/gsl::span-and-std::span) for additional information.
span_p | &#x2610; | spans a range starting from a pointer to the first place for which the predicate is true
basic_zstring | &#x2611; | a pointer to a C-string (zero-terminated array) with a templated char type
zstring | &#x2611; | an alias to `basic_zstring` with a char type of char