diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-05 16:48:49 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-05 16:48:49 -0400 |
| commit | 2d2b9a288fef7bed574671bf091052b85494065f (patch) | |
| tree | 4dec3dac63ba65118bcd05385adc57ab9b8ed51b /docs/type_system | |
| parent | 937c915ab2d19934786e352b1bc2d419ac235ce7 (diff) | |
alias qualifiers unique
Diffstat (limited to 'docs/type_system')
| -rw-r--r-- | docs/type_system/alias.md | 7 | ||||
| -rw-r--r-- | docs/type_system/qualifiers.md | 13 | ||||
| -rw-r--r-- | docs/type_system/unique.md | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/docs/type_system/alias.md b/docs/type_system/alias.md new file mode 100644 index 0000000..02dca3a --- /dev/null +++ b/docs/type_system/alias.md @@ -0,0 +1,7 @@ +# Alias + +--- + +A type based on a complete template that is interchangeable with what it is based on + +## Defined Alias diff --git a/docs/type_system/qualifiers.md b/docs/type_system/qualifiers.md new file mode 100644 index 0000000..22acd83 --- /dev/null +++ b/docs/type_system/qualifiers.md @@ -0,0 +1,13 @@ +# Qualifiers + +--- + +Only a single qualifier can be used with a template + +## Const + +## Lock + +## Ref + +## Shared diff --git a/docs/type_system/unique.md b/docs/type_system/unique.md new file mode 100644 index 0000000..0254934 --- /dev/null +++ b/docs/type_system/unique.md @@ -0,0 +1,5 @@ +# Unique + +--- + +A type based on a complete template that is not interchangeable with what it is based on |
