manual_experimental: cleanup the type/typedesc confusions, typedesc is here to stay for good

This commit is contained in:
Araq
2019-04-20 17:55:25 +02:00
parent 135f867870
commit 5edc5fc650

View File

@@ -486,9 +486,9 @@ The concept types can be parametric just like the regular generic types:
M.data[m * M.N + n] = v
# Adapt the Matrix type to the concept's requirements
template Rows*(M: type Matrix): int = M.M
template Cols*(M: type Matrix): int = M.N
template ValueType*(M: type Matrix): type = M.T
template Rows*(M: typedesc[Matrix]): int = M.M
template Cols*(M: typedesc[Matrix]): int = M.N
template ValueType*(M: typedesc[Matrix]): typedesc = M.T
-------------
### usage.nim