Files
pixes/lib/foundation/pair.dart
2024-05-13 09:36:23 +08:00

9 lines
186 B
Dart

class Pair<M, V>{
M left;
V right;
Pair(this.left, this.right);
Pair.fromMap(Map<M, V> map, M key): left = key, right = map[key]
?? (throw Exception("Pair not found"));
}