Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
a = Map.values(m)
This operation is inlined
a := make([]V, 0, len(m))
for _, v := range m {
a = append(a, v)
}
The values have type V
@a = values %m;
Perl has operators keys/values to extract keys/values into a list. The resulting list is not ordered.
a = [*m.values()]