TotalContainer.ValueType

If the container has a notion of key-value mapping, ValueType defines the type of the value of the container. Typically, a map-style container mapping values of type K to values of type V defines KeyType to be K and ValueType to be V.

struct TotalContainer(T)
alias ValueType = T

Meta