1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-07-01 22:23:29 +00:00
Files
comunicmobile/lib/utils/map_utils.dart
2020-05-01 15:39:54 +02:00

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));