EFUN: m_values

SYNTAX:
mixed *m_values( map );
  mapping map;

DESCRIPTION:
This efun extracts from each index:value pair elements of mapping 'map'
the value, and puts those in an array.

RETURN VALUE:
An array containing the values of mapping 'map' is returned.

SEE ALSO:
mappingp
mkmapping
m_indices
m_delete
m_sizeof

EXAMPLE:
mapping mp;
string *str;

mp = ([ "Angela":"female", "Marc":"male", "Maria":female" ]);
str = m_indices( mp );
// str is now ({ "male", "female", "female" }).
