1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/utils/map_utils.dart

7 lines
171 B
Dart

/// Map utilities
///
/// @author Pierre HUBERT
/// Invert the values of a map with their keys
Map<V, K> invertMap<K, V>(Map<K, V> m) => m.map((k, v) => MapEntry(v, k));