opt: sponsor block

This commit is contained in:
bggRGjQaUbCoE
2024-10-21 21:12:50 +08:00
parent ef80589636
commit ca28dd374a
11 changed files with 518 additions and 104 deletions

View File

@@ -0,0 +1,8 @@
class Pair<T, R> {
Pair({
required this.first,
required this.second,
});
T first;
R second;
}