Wolfram: Association. Get All Keys or Values
To List of Rules
Get All Keys
Keys[asso]-
return a list of the keys.
xx = Association[ a -> 3, b -> 2 ]; Keys[ xx ] (* {a, b} *)
Get All Values
Values[asso]-
return a list of the values.
xx = Association[ a -> 3, b -> 2 ]; Values[ xx ] (* {3, 2} *)