mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Merge pull request #823 from johelegp/gsl_concept_dead_link_fix
GSL.concept: Dead link fix
This commit is contained in:
@@ -17708,9 +17708,9 @@ Most of the concepts below are defined in [the Ranges TS](http://www.open-std.or
|
||||
* `String` // ???
|
||||
* `Number` // ???
|
||||
* `Sortable`
|
||||
* `Pointer` // A type with `*`, `->`, `==`, and default construction (default construction is assumed to set the singular "null" value); see [smart pointers](#Rr-smartptrconcepts)
|
||||
* `Unique_ptr` // A type that matches `Pointer`, has move (not copy), and matches the Lifetime profile criteria for a `unique` owner type; see [smart pointers](#Rr-smartptrconcepts)
|
||||
* `Shared_ptr` // A type that matches `Pointer`, has copy, and matches the Lifetime profile criteria for a `shared` owner type; see [smart pointers](#Rr-smartptrconcepts)
|
||||
* `Pointer` // A type with `*`, `->`, `==`, and default construction (default construction is assumed to set the singular "null" value); see [smart pointers](#SS-gsl-smartptrconcepts)
|
||||
* `Unique_ptr` // A type that matches `Pointer`, has move (not copy), and matches the Lifetime profile criteria for a `unique` owner type; see [smart pointers](#SS-gsl-smartptrconcepts)
|
||||
* `Shared_ptr` // A type that matches `Pointer`, has copy, and matches the Lifetime profile criteria for a `shared` owner type; see [smart pointers](#SS-gsl-smartptrconcepts)
|
||||
* `EqualityComparable` // ???Must we suffer CaMelcAse???
|
||||
* `Convertible`
|
||||
* `Common`
|
||||
|
||||
Reference in New Issue
Block a user