mirror of
https://github.com/immich-app/immich.git
synced 2026-04-05 08:42:00 -04:00
4 lines
97 B
Dart
4 lines
97 B
Dart
extension Let<T extends Object> on T {
|
|
R let<R>(R Function(T) transform) => transform(this);
|
|
}
|