combine-latest 1.3.2

Combines two or more streams into a new stream which yields tuples with the latest values from each input stream
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
use std::future;

use futures_core::Stream;
use futures_util::{StreamExt, stream::select};

// ---------------------------------------------------------------------------
// Traits
// ---------------------------------------------------------------------------

/// Combines multiple streams into a single stream that yields tuples with the latest value from
/// each input stream. The output stream won't yield until every input stream has produced at least
/// one item. Implemented for tuples of 2 to 12 streams whose items implement `Clone`.
pub trait CombineLatest {
    type Item;

    /// Returns a stream that yields tuples of the latest values from each input stream.
    /// No items are emitted until every input stream has produced at least one value.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::CombineLatest;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let s1 = stream::iter([1, 2, 3]);
    /// let s2 = stream::iter(["a", "b"]);
    /// let result: Vec<_> = block_on((s1, s2).combine_latest().collect());
    /// assert_eq!(result, vec![(1, "a"), (2, "a"), (2, "b"), (3, "b")]);
    /// ```
    fn combine_latest(self) -> impl Stream<Item = Self::Item>;
}

/// Like [`CombineLatest`], but wraps each position in `Option` and starts yielding as soon as
/// *any* input stream produces a value. Positions that haven't yielded yet are `None`.
/// Implemented for tuples of 2 to 12 streams whose items implement `Clone`.
pub trait CombineLatestOpt {
    type Item;

    /// Returns a stream that yields tuples of `Option` values, starting as soon as *any* input
    /// stream produces a value. Positions that haven't yielded yet are `None`.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::CombineLatestOpt;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let s1 = stream::iter([1, 2]);
    /// let s2 = stream::iter(["a"]);
    /// let result: Vec<_> = block_on((s1, s2).combine_latest_opt().collect());
    /// assert_eq!(
    ///     result,
    ///     vec![
    ///         (Some(1), None),
    ///         (Some(1), Some("a")),
    ///         (Some(2), Some("a")),
    ///     ]
    /// );
    /// ```
    fn combine_latest_opt(self) -> impl Stream<Item = Self::Item>;
}

/// Combines multiple streams and applies a closure to references of the latest values. The output
/// stream won't yield until every input stream has produced at least one item. Unlike
/// [`CombineLatest`], the item types don't need to implement `Clone`. Implemented for tuples of
/// 2 to 12 streams.
pub trait MapLatest<F> {
    type Output;

    /// Returns a stream that applies a closure to references of the latest values from each
    /// input stream. No items are emitted until every input stream has produced at least one
    /// value. Unlike [`CombineLatest::combine_latest`], the item types don't need to implement
    /// `Clone`.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::MapLatest;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let s1 = stream::iter([1, 2]);
    /// let s2 = stream::iter(["a", "b"]);
    /// let result: Vec<_> = block_on((s1, s2).map_latest(|n, s| format!("{n}{s}")).collect());
    /// assert_eq!(result, vec!["1a", "2a", "2b"]);
    /// ```
    fn map_latest(self, f: F) -> impl Stream<Item = Self::Output>;
}

/// Like [`MapLatest`], but the closure receives `Option` references and the output stream starts
/// yielding as soon as *any* input stream produces a value. Implemented for tuples of 2 to 12
/// streams.
pub trait MapLatestOpt<F> {
    type Output;

    /// Returns a stream that applies a closure to `Option` references of the latest values.
    /// Starts yielding as soon as *any* input stream produces a value.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::MapLatestOpt;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let s1 = stream::iter([1, 2]);
    /// let s2 = stream::iter(["a"]);
    /// let result: Vec<_> = block_on((s1, s2).map_latest_opt(|n, s| {
    ///     format!("{n:?}-{s:?}")
    /// }).collect());
    /// assert_eq!(result, vec!["Some(1)-None", "Some(1)-Some(\"a\")", "Some(2)-Some(\"a\")"]);
    /// ```
    fn map_latest_opt(self, f: F) -> impl Stream<Item = Self::Output>;
}

/// Emits the latest values from all streams as a tuple, but **only when the primary (first)
/// stream yields**. Secondary streams silently update their cached values without triggering
/// output. No output is produced until every secondary stream has yielded at least once.
/// Implemented for tuples of 2 to 12 streams whose items implement `Clone`.
pub trait WithLatestFrom {
    type Item;

    /// Returns a stream that emits tuples of the latest values, but **only when the primary
    /// (first) stream yields**. Secondary streams silently update their cached values without
    /// triggering output. No output is produced until every secondary stream has yielded at
    /// least once.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::WithLatestFrom;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let clicks = stream::iter([1, 2, 3]);
    /// let form_state = stream::iter(["draft"]);
    /// let result: Vec<_> = block_on((clicks, form_state).with_latest_from().collect());
    /// // Only click 2 and 3 emit — click 1 arrives before form_state has a value
    /// assert_eq!(result, vec![(2, "draft"), (3, "draft")]);
    /// ```
    fn with_latest_from(self) -> impl Stream<Item = Self::Item>;
}

/// Like [`WithLatestFrom`], but applies a closure to references of the latest values instead of
/// returning a tuple. The item types don't need to implement `Clone`. Implemented for tuples of
/// 2 to 12 streams.
pub trait MapWithLatestFrom<F> {
    type Output;

    /// Returns a stream that applies a closure to references of the latest values, but **only
    /// when the primary (first) stream yields**. The item types don't need to implement `Clone`.
    ///
    /// # Example
    ///
    /// ```
    /// use combine_latest::MapWithLatestFrom;
    /// use futures::executor::block_on;
    /// use futures::stream::{self, StreamExt};
    ///
    /// let clicks = stream::iter([1, 2, 3]);
    /// let label = stream::iter(["save"]);
    /// let result: Vec<_> = block_on(
    ///     (clicks, label).map_with_latest_from(|n, s| format!("{s}:{n}")).collect()
    /// );
    /// assert_eq!(result, vec!["save:2", "save:3"]);
    /// ```
    fn map_with_latest_from(self, f: F) -> impl Stream<Item = Self::Output>;
}

// ---------------------------------------------------------------------------
// Helper macro – left-fold nested select
// ---------------------------------------------------------------------------

macro_rules! nest_select {
    ($a:expr, $b:expr) => { select($a, $b) };
    ($a:expr, $b:expr, $($rest:expr),+) => {
        nest_select!(select($a, $b), $($rest),+)
    };
}

// ---------------------------------------------------------------------------
// Main macro – generates tag enum + all 4 trait impls for one arity
// ---------------------------------------------------------------------------

macro_rules! impl_combine_latest {
    (
        $Tag:ident { $($Var:ident),+ }
        [$(($T:ident, $S:ident, $s:ident, $c:ident, $lt:lifetime)),+]
    ) => {
        enum $Tag<$($T),+> { $($Var($T)),+ }

        impl<$($T: Clone, $S: Stream<Item = $T>),+> CombineLatest for ($($S,)+) {
            type Item = ($($T,)+);

            fn combine_latest(self) -> impl Stream<Item = Self::Item> {
                let ($($s,)+) = self;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($($s.map($Tag::$Var)),+)
                    .filter_map(move |tagged| {
                        match tagged { $($Tag::$Var(v) => $c = Some(v),)+ }
                        future::ready(match ($($c.clone(),)+) {
                            ($(Some($s),)+) => Some(($($s,)+)),
                            _ => None,
                        })
                    })
            }
        }

        impl<$($T: Clone, $S: Stream<Item = $T>),+> CombineLatestOpt for ($($S,)+) {
            type Item = ($(Option<$T>,)+);

            fn combine_latest_opt(self) -> impl Stream<Item = Self::Item> {
                let ($($s,)+) = self;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($($s.map($Tag::$Var)),+)
                    .map(move |tagged| {
                        match tagged { $($Tag::$Var(v) => $c = Some(v),)+ }
                        ($($c.clone(),)+)
                    })
            }
        }

        impl<$($T, $S: Stream<Item = $T>,)+ U, F> MapLatest<F> for ($($S,)+)
        where
            F: for<$($lt),+> FnMut($(&$lt $T),+) -> U,
        {
            type Output = U;

            fn map_latest(self, mut f: F) -> impl Stream<Item = U> {
                let ($($s,)+) = self;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($($s.map($Tag::$Var)),+)
                    .filter_map(move |tagged| {
                        match tagged { $($Tag::$Var(v) => $c = Some(v),)+ }
                        future::ready(match ($($c.as_ref(),)+) {
                            ($(Some($s),)+) => Some(f($($s),+)),
                            _ => None,
                        })
                    })
            }
        }

        impl<$($T, $S: Stream<Item = $T>,)+ U, F> MapLatestOpt<F> for ($($S,)+)
        where
            F: for<$($lt),+> FnMut($(Option<&$lt $T>),+) -> U,
        {
            type Output = U;

            fn map_latest_opt(self, mut f: F) -> impl Stream<Item = U> {
                let ($($s,)+) = self;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($($s.map($Tag::$Var)),+)
                    .map(move |tagged| {
                        match tagged { $($Tag::$Var(v) => $c = Some(v),)+ }
                        f($($c.as_ref(),)+)
                    })
            }
        }
    };
}

// ---------------------------------------------------------------------------
// with_latest_from macro – emits only when the primary (first) stream yields
// ---------------------------------------------------------------------------

macro_rules! impl_with_latest_from {
    (
        $Tag:ident { $PrimaryVar:ident $(, $SecondaryVar:ident)+ }
        [($PT:ident, $PS:ident, $ps:ident, $pc:ident, $plt:lifetime)
         $(, ($T:ident, $S:ident, $s:ident, $c:ident, $lt:lifetime))+]
    ) => {
        impl<$PT: Clone, $($T: Clone,)+ $PS: Stream<Item = $PT>, $($S: Stream<Item = $T>),+>
            WithLatestFrom for ($PS, $($S,)+)
        {
            type Item = ($PT, $($T,)+);

            fn with_latest_from(self) -> impl Stream<Item = Self::Item> {
                let ($ps, $($s,)+) = self;
                let mut $pc: Option<$PT> = None;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($ps.map($Tag::$PrimaryVar), $($s.map($Tag::$SecondaryVar)),+)
                    .filter_map(move |tagged| {
                        let is_primary = matches!(tagged, $Tag::$PrimaryVar(_));
                        match tagged {
                            $Tag::$PrimaryVar(v) => $pc = Some(v),
                            $($Tag::$SecondaryVar(v) => $c = Some(v),)+
                        }
                        future::ready(if is_primary {
                            match ($pc.clone(), $($c.clone(),)+) {
                                (Some($ps), $(Some($s),)+) => Some(($ps, $($s,)+)),
                                _ => None,
                            }
                        } else {
                            None
                        })
                    })
            }
        }

        impl<$PT, $($T,)+ $PS: Stream<Item = $PT>, $($S: Stream<Item = $T>,)+ U, F>
            MapWithLatestFrom<F> for ($PS, $($S,)+)
        where
            F: for<$plt, $($lt),+> FnMut(&$plt $PT, $(&$lt $T),+) -> U,
        {
            type Output = U;

            fn map_with_latest_from(self, mut f: F) -> impl Stream<Item = U> {
                let ($ps, $($s,)+) = self;
                let mut $pc: Option<$PT> = None;
                $(let mut $c: Option<$T> = None;)+
                nest_select!($ps.map($Tag::$PrimaryVar), $($s.map($Tag::$SecondaryVar)),+)
                    .filter_map(move |tagged| {
                        let is_primary = matches!(tagged, $Tag::$PrimaryVar(_));
                        match tagged {
                            $Tag::$PrimaryVar(v) => $pc = Some(v),
                            $($Tag::$SecondaryVar(v) => $c = Some(v),)+
                        }
                        future::ready(if is_primary {
                            match ($pc.as_ref(), $($c.as_ref(),)+) {
                                (Some($ps), $(Some($s),)+) => Some(f($ps, $($s),+)),
                                _ => None,
                            }
                        } else {
                            None
                        })
                    })
            }
        }
    };
}

// ---------------------------------------------------------------------------
// Macro invocations – one per arity (2 through 12)
// ---------------------------------------------------------------------------

impl_combine_latest!(LR { L, R }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b)]
);

impl_combine_latest!(Tag3 { A, B, C }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c)]
);

impl_combine_latest!(Tag4 { A, B, C, D }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd)]
);

impl_combine_latest!(Tag5 { A, B, C, D, E }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e)]
);

impl_combine_latest!(Tag6 { A, B, C, D, E, F }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f)]
);

impl_combine_latest!(Tag7 { A, B, C, D, E, F, G }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g)]
);

impl_combine_latest!(Tag8 { A, B, C, D, E, F, G, H }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h)]
);

impl_combine_latest!(Tag9 { A, B, C, D, E, F, G, H, I }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i)]
);

impl_combine_latest!(Tag10 { A, B, C, D, E, F, G, H, I, J }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j)]
);

impl_combine_latest!(Tag11 { A, B, C, D, E, F, G, H, I, J, K }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j), (T11, S11, s11, c11, 'k)]
);

impl_combine_latest!(Tag12 { A, B, C, D, E, F, G, H, I, J, K, L }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j), (T11, S11, s11, c11, 'k),
     (T12, S12, s12, c12, 'l)]
);

impl_with_latest_from!(LR { L, R }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b)]
);

impl_with_latest_from!(Tag3 { A, B, C }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c)]
);

impl_with_latest_from!(Tag4 { A, B, C, D }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd)]
);

impl_with_latest_from!(Tag5 { A, B, C, D, E }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e)]
);

impl_with_latest_from!(Tag6 { A, B, C, D, E, F }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f)]
);

impl_with_latest_from!(Tag7 { A, B, C, D, E, F, G }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g)]
);

impl_with_latest_from!(Tag8 { A, B, C, D, E, F, G, H }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h)]
);

impl_with_latest_from!(Tag9 { A, B, C, D, E, F, G, H, I }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i)]
);

impl_with_latest_from!(Tag10 { A, B, C, D, E, F, G, H, I, J }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j)]
);

impl_with_latest_from!(Tag11 { A, B, C, D, E, F, G, H, I, J, K }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j), (T11, S11, s11, c11, 'k)]
);

impl_with_latest_from!(Tag12 { A, B, C, D, E, F, G, H, I, J, K, L }
    [(T1, S1, s1, c1, 'a), (T2, S2, s2, c2, 'b), (T3, S3, s3, c3, 'c), (T4, S4, s4, c4, 'd),
     (T5, S5, s5, c5, 'e), (T6, S6, s6, c6, 'f), (T7, S7, s7, c7, 'g), (T8, S8, s8, c8, 'h),
     (T9, S9, s9, c9, 'i), (T10, S10, s10, c10, 'j), (T11, S11, s11, c11, 'k),
     (T12, S12, s12, c12, 'l)]
);

// ---------------------------------------------------------------------------
// Public free functions – documented wrappers that delegate to the traits
// ---------------------------------------------------------------------------

/// Combines two streams into a new stream that always contains the latest items from both streams
/// as a tuple. This stream won't yield a tuple until both input streams have yielded at least one
/// item each.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2, 3]);
/// let s2 = stream::iter(["a", "b"]);
/// let result: Vec<_> = block_on(combine_latest(s1, s2).collect());
/// assert_eq!(result, vec![(1, "a"), (2, "a"), (2, "b"), (3, "b")]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest<T1: Clone, T2: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
) -> impl Stream<Item = (T1, T2)> {
    (s1, s2).combine_latest()
}

#[deprecated(since = "1.1.0", note = "Use combine_latest_opt instead")]
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest_optional<T1: Clone, T2: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
) -> impl Stream<Item = (Option<T1>, Option<T2>)> {
    combine_latest_opt(s1, s2)
}

/// Combines two streams into a new stream, yielding tuples of `(Option<T1>, Option<T2>)`. The
/// stream starts yielding tuples as soon as one of the input streams yields an item, and the one
/// that has not yet yielded has a corresponding `None` in its field of the tuple.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest_opt;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let result: Vec<_> = block_on(combine_latest_opt(s1, s2).collect());
/// assert_eq!(
///     result,
///     vec![
///         (Some(1), None),
///         (Some(1), Some("a")),
///         (Some(2), Some("a")),
///     ]
/// );
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest_opt<T1: Clone, T2: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
) -> impl Stream<Item = (Option<T1>, Option<T2>)> {
    (s1, s2).combine_latest_opt()
}

/// Combines two streams into a new stream and applies the given function to each item. The
/// function takes references as arguments, so unlike [`combine_latest`] the types don't have to
/// implement `Clone`. The returned stream won't yield until both streams have yielded at least one
/// item each.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2]);
/// let s2 = stream::iter(["a", "b"]);
/// let result: Vec<_> = block_on(map_latest(s1, s2, |n, s| format!("{n}{s}")).collect());
/// assert_eq!(result, vec!["1a", "2a", "2b"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest<T1, T2, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    f: impl for<'a, 'b> FnMut(&'a T1, &'b T2) -> U,
) -> impl Stream<Item = U> {
    (s1, s2).map_latest(f)
}

/// Combines two streams into a new stream and applies the given function to each item. The
/// function takes `Option` references and yields as soon as one input stream yields.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest_opt;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let result: Vec<_> = block_on(map_latest_opt(s1, s2, |n, s| {
///     format!("{n:?}-{s:?}")
/// }).collect());
/// assert_eq!(result, vec!["Some(1)-None", "Some(1)-Some(\"a\")", "Some(2)-Some(\"a\")"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest_opt<T1, T2, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    f: impl for<'a, 'b> FnMut(Option<&'a T1>, Option<&'b T2>) -> U,
) -> impl Stream<Item = U> {
    (s1, s2).map_latest_opt(f)
}

// -- 3-stream free functions --

/// Combines three streams into a new stream that yields the latest items from all streams as a
/// tuple. This stream won't yield until all three input streams have yielded at least one item
/// each.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let result: Vec<_> = block_on(combine_latest3(s1, s2, s3).collect());
/// assert_eq!(result, vec![(1, "a", true), (2, "a", true)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest3<T1: Clone, T2: Clone, T3: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
) -> impl Stream<Item = (T1, T2, T3)> {
    (s1, s2, s3).combine_latest()
}

/// Combines three streams into a new stream, yielding tuples of
/// `(Option<T1>, Option<T2>, Option<T3>)`. The stream starts yielding as soon as any input stream
/// yields an item.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest_opt3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter::<[bool; 0]>([]);
/// let result: Vec<_> = block_on(combine_latest_opt3(s1, s2, s3).collect());
/// assert_eq!(result, vec![(Some(1), None, None), (Some(1), Some("a"), None)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest_opt3<T1: Clone, T2: Clone, T3: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
) -> impl Stream<Item = (Option<T1>, Option<T2>, Option<T3>)> {
    (s1, s2, s3).combine_latest_opt()
}

/// Combines three streams and applies the given function to each set of latest items. The function
/// takes references, so the types don't need to implement `Clone`. Won't yield until all three
/// streams have yielded at least one item each.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let result: Vec<_> = block_on(map_latest3(s1, s2, s3, |n, s, b| {
///     format!("{n}-{s}-{b}")
/// }).collect());
/// assert_eq!(result, vec!["1-a-true", "2-a-true"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest3<T1, T2, T3, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    f: impl for<'a, 'b, 'c> FnMut(&'a T1, &'b T2, &'c T3) -> U,
) -> impl Stream<Item = U> {
    (s1, s2, s3).map_latest(f)
}

/// Combines three streams and applies the given function to each set of latest items. The function
/// takes `Option` references and yields as soon as any input stream yields.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest_opt3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let result: Vec<_> = block_on(map_latest_opt3(s1, s2, s3, |n, s, b| {
///     (n.copied(), s.copied(), b.copied())
/// }).collect());
/// assert_eq!(result[0], (Some(1), None, None));
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest_opt3<T1, T2, T3, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    f: impl for<'a, 'b, 'c> FnMut(Option<&'a T1>, Option<&'b T2>, Option<&'c T3>) -> U,
) -> impl Stream<Item = U> {
    (s1, s2, s3).map_latest_opt(f)
}

// -- 4-stream free functions --

/// Combines four streams into a new stream that yields the latest items from all streams as a
/// tuple. This stream won't yield until all four input streams have yielded at least one item each.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let s4 = stream::iter([0.5]);
/// let result: Vec<_> = block_on(combine_latest4(s1, s2, s3, s4).collect());
/// assert_eq!(result, vec![(1, "a", true, 0.5)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest4<T1: Clone, T2: Clone, T3: Clone, T4: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
) -> impl Stream<Item = (T1, T2, T3, T4)> {
    (s1, s2, s3, s4).combine_latest()
}

/// Combines four streams into a new stream, yielding tuples of
/// `(Option<T1>, Option<T2>, Option<T3>, Option<T4>)`. The stream starts yielding as soon as any
/// input stream yields an item.
///
/// # Example
///
/// ```
/// use combine_latest::combine_latest_opt4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter::<[&str; 0]>([]);
/// let s3 = stream::iter::<[bool; 0]>([]);
/// let s4 = stream::iter::<[f64; 0]>([]);
/// let result: Vec<_> = block_on(combine_latest_opt4(s1, s2, s3, s4).collect());
/// assert_eq!(result, vec![(Some(1), None, None, None)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn combine_latest_opt4<T1: Clone, T2: Clone, T3: Clone, T4: Clone>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
) -> impl Stream<Item = (Option<T1>, Option<T2>, Option<T3>, Option<T4>)> {
    (s1, s2, s3, s4).combine_latest_opt()
}

/// Combines four streams and applies the given function to each set of latest items. The function
/// takes references, so the types don't need to implement `Clone`. Won't yield until all four
/// streams have yielded at least one item each.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let s4 = stream::iter([0.5_f64]);
/// let result: Vec<_> = block_on(map_latest4(s1, s2, s3, s4, |a, b, c, d| {
///     format!("{a}-{b}-{c}-{d}")
/// }).collect());
/// assert_eq!(result, vec!["1-a-true-0.5"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest4<T1, T2, T3, T4, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
    f: impl for<'a, 'b, 'c, 'd> FnMut(&'a T1, &'b T2, &'c T3, &'d T4) -> U,
) -> impl Stream<Item = U> {
    (s1, s2, s3, s4).map_latest(f)
}

/// Combines four streams and applies the given function to each set of latest items. The function
/// takes `Option` references and yields as soon as any input stream yields.
///
/// # Example
///
/// ```
/// use combine_latest::map_latest_opt4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let s1 = stream::iter([1]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let s4 = stream::iter([0.5_f64]);
/// let result: Vec<_> = block_on(map_latest_opt4(s1, s2, s3, s4, |a, b, c, d| {
///     (a.copied(), b.copied(), c.copied(), d.copied())
/// }).collect());
/// assert_eq!(result[0], (Some(1), None, None, None));
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_latest_opt4<T1, T2, T3, T4, U>(
    s1: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
    f: impl for<'a, 'b, 'c, 'd> FnMut(
        Option<&'a T1>,
        Option<&'b T2>,
        Option<&'c T3>,
        Option<&'d T4>,
    ) -> U,
) -> impl Stream<Item = U> {
    (s1, s2, s3, s4).map_latest_opt(f)
}

// -- 2-stream with_latest_from free functions --

/// Emits tuples of the latest values from both streams, but **only when the primary (first)
/// stream yields**. The secondary stream silently updates its cached value without triggering
/// output. No output is produced until the secondary stream has yielded at least once.
///
/// # Example
///
/// ```
/// use combine_latest::with_latest_from;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let clicks = stream::iter([1, 2, 3]);
/// let form_state = stream::iter(["draft"]);
/// let result: Vec<_> = block_on(with_latest_from(clicks, form_state).collect());
/// // Only click 2 and 3 emit — click 1 arrives before form_state has a value
/// assert_eq!(result, vec![(2, "draft"), (3, "draft")]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn with_latest_from<T1: Clone, T2: Clone>(
    primary: impl Stream<Item = T1>,
    secondary: impl Stream<Item = T2>,
) -> impl Stream<Item = (T1, T2)> {
    (primary, secondary).with_latest_from()
}

/// Emits values from two streams by applying a function, but **only when the primary (first)
/// stream yields**. The function takes references, so the types don't need to implement `Clone`.
///
/// # Example
///
/// ```
/// use combine_latest::map_with_latest_from;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let clicks = stream::iter([1, 2, 3]);
/// let label = stream::iter(["save"]);
/// let result: Vec<_> = block_on(
///     map_with_latest_from(clicks, label, |n, s| format!("{s}:{n}")).collect()
/// );
/// assert_eq!(result, vec!["save:2", "save:3"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_with_latest_from<T1, T2, U>(
    primary: impl Stream<Item = T1>,
    secondary: impl Stream<Item = T2>,
    f: impl for<'a, 'b> FnMut(&'a T1, &'b T2) -> U,
) -> impl Stream<Item = U> {
    (primary, secondary).map_with_latest_from(f)
}

// -- 3-stream with_latest_from free functions --

/// Emits tuples of the latest values from three streams, but **only when the primary (first)
/// stream yields**. See [`with_latest_from`] for details.
///
/// # Example
///
/// ```
/// use combine_latest::with_latest_from3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let primary = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let result: Vec<_> = block_on(with_latest_from3(primary, s2, s3).collect());
/// assert_eq!(result, vec![(2, "a", true)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn with_latest_from3<T1: Clone, T2: Clone, T3: Clone>(
    primary: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
) -> impl Stream<Item = (T1, T2, T3)> {
    (primary, s2, s3).with_latest_from()
}

/// Emits values from three streams by applying a function, but **only when the primary (first)
/// stream yields**. See [`map_with_latest_from`] for details.
///
/// # Example
///
/// ```
/// use combine_latest::map_with_latest_from3;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let primary = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let result: Vec<_> = block_on(map_with_latest_from3(primary, s2, s3, |n, s, b| {
///     format!("{n}-{s}-{b}")
/// }).collect());
/// assert_eq!(result, vec!["2-a-true"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_with_latest_from3<T1, T2, T3, U>(
    primary: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    f: impl for<'a, 'b, 'c> FnMut(&'a T1, &'b T2, &'c T3) -> U,
) -> impl Stream<Item = U> {
    (primary, s2, s3).map_with_latest_from(f)
}

// -- 4-stream with_latest_from free functions --

/// Emits tuples of the latest values from four streams, but **only when the primary (first)
/// stream yields**. See [`with_latest_from`] for details.
///
/// # Example
///
/// ```
/// use combine_latest::with_latest_from4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let primary = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let s4 = stream::iter([0.5]);
/// let result: Vec<_> = block_on(with_latest_from4(primary, s2, s3, s4).collect());
/// assert_eq!(result, vec![(2, "a", true, 0.5)]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn with_latest_from4<T1: Clone, T2: Clone, T3: Clone, T4: Clone>(
    primary: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
) -> impl Stream<Item = (T1, T2, T3, T4)> {
    (primary, s2, s3, s4).with_latest_from()
}

/// Emits values from four streams by applying a function, but **only when the primary (first)
/// stream yields**. See [`map_with_latest_from`] for details.
///
/// # Example
///
/// ```
/// use combine_latest::map_with_latest_from4;
/// use futures::executor::block_on;
/// use futures::stream::{self, StreamExt};
///
/// let primary = stream::iter([1, 2]);
/// let s2 = stream::iter(["a"]);
/// let s3 = stream::iter([true]);
/// let s4 = stream::iter([0.5_f64]);
/// let result: Vec<_> = block_on(map_with_latest_from4(primary, s2, s3, s4, |a, b, c, d| {
///     format!("{a}-{b}-{c}-{d}")
/// }).collect());
/// assert_eq!(result, vec!["2-a-true-0.5"]);
/// ```
#[must_use = "streams do nothing unless polled"]
pub fn map_with_latest_from4<T1, T2, T3, T4, U>(
    primary: impl Stream<Item = T1>,
    s2: impl Stream<Item = T2>,
    s3: impl Stream<Item = T3>,
    s4: impl Stream<Item = T4>,
    f: impl for<'a, 'b, 'c, 'd> FnMut(&'a T1, &'b T2, &'c T3, &'d T4) -> U,
) -> impl Stream<Item = U> {
    (primary, s2, s3, s4).map_with_latest_from(f)
}

// For 5+ streams, use the trait-based API directly:
//   (s1, s2, s3, s4, s5).combine_latest()
//   (s1, s2, s3, s4, s5).with_latest_from()
//   (s1, s2, s3, s4, s5).map_latest(|a, b, c, d, e| ...)

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;
    use futures::executor::block_on;
    use futures::stream::{self, StreamExt};

    // Tests rely on `futures::stream::select` round-robin polling: with immediately-ready
    // `stream::iter` streams, it alternates s1, s2, s1, s2, ... yielding deterministic output.

    // -- 2-stream tests --

    #[test]
    fn combine_latest_basic() {
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on(combine_latest(s1, s2).collect());
        assert_eq!(result, vec![(1, "a"), (2, "a"), (2, "b"), (3, "b")]);
    }

    #[test]
    fn combine_latest_empty_stream() {
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(Vec::<&str>::new());
        let result: Vec<_> = block_on(combine_latest(s1, s2).collect());
        assert!(result.is_empty());
    }

    #[test]
    fn combine_latest_opt_basic() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a"]);
        let result: Vec<_> = block_on(combine_latest_opt(s1, s2).collect());
        assert_eq!(
            result,
            vec![(Some(1), None), (Some(1), Some("a")), (Some(2), Some("a")),]
        );
    }

    #[test]
    fn combine_latest_opt_empty_stream() {
        let s1 = stream::iter(Vec::<i32>::new());
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on(combine_latest_opt(s1, s2).collect());
        assert_eq!(result, vec![(None, Some("a")), (None, Some("b"))]);
    }

    #[test]
    #[allow(deprecated)]
    fn combine_latest_optional_delegates() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let result: Vec<_> = block_on(combine_latest_optional(s1, s2).collect());
        let expected: Vec<_> =
            block_on(combine_latest_opt(stream::iter([1]), stream::iter(["a"])).collect());
        assert_eq!(result, expected);
    }

    #[test]
    fn map_latest_basic() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on(map_latest(s1, s2, |n, s| format!("{n}{s}")).collect());
        assert_eq!(result, vec!["1a", "2a", "2b"]);
    }

    #[test]
    fn map_latest_non_clone() {
        struct NonClone(i32);
        let s1 = stream::iter([NonClone(1), NonClone(2)]);
        let s2 = stream::iter([NonClone(10)]);
        let result: Vec<_> = block_on(map_latest(s1, s2, |a, b| a.0 + b.0).collect());
        assert_eq!(result, vec![11, 12]);
    }

    #[test]
    fn map_latest_opt_basic() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a"]);
        let result: Vec<_> =
            block_on(map_latest_opt(s1, s2, |n, s| (n.copied(), s.copied())).collect());
        assert_eq!(
            result,
            vec![(Some(1), None), (Some(1), Some("a")), (Some(2), Some("a")),]
        );
    }

    // -- 3-stream tests --

    #[test]
    fn combine_latest3_basic() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let result: Vec<_> = block_on(combine_latest3(s1, s2, s3).collect());
        assert_eq!(result, vec![(1, "a", true), (2, "a", true)]);
    }

    #[test]
    fn combine_latest3_empty_stream() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(Vec::<&str>::new());
        let s3 = stream::iter([true]);
        let result: Vec<_> = block_on(combine_latest3(s1, s2, s3).collect());
        assert!(result.is_empty());
    }

    #[test]
    fn combine_latest_opt3_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter::<[bool; 0]>([]);
        let result: Vec<_> = block_on(combine_latest_opt3(s1, s2, s3).collect());
        assert_eq!(
            result,
            vec![(Some(1), None, None), (Some(1), Some("a"), None),]
        );
    }

    #[test]
    fn map_latest3_basic() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let result: Vec<_> =
            block_on(map_latest3(s1, s2, s3, |n, s, b| format!("{n}-{s}-{b}")).collect());
        assert_eq!(result, vec!["1-a-true", "2-a-true"]);
    }

    #[test]
    fn map_latest_opt3_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let result: Vec<_> = block_on(
            map_latest_opt3(s1, s2, s3, |n, s, b| (n.copied(), s.copied(), b.copied())).collect(),
        );
        assert_eq!(result[0], (Some(1), None, None));
        assert!(result.len() >= 3);
    }

    // -- 4-stream tests --

    #[test]
    fn combine_latest4_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5]);
        let result: Vec<_> = block_on(combine_latest4(s1, s2, s3, s4).collect());
        assert_eq!(result, vec![(1, "a", true, 0.5)]);
    }

    #[test]
    fn combine_latest4_empty_stream() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter(Vec::<bool>::new());
        let s4 = stream::iter([0.5]);
        let result: Vec<_> = block_on(combine_latest4(s1, s2, s3, s4).collect());
        assert!(result.is_empty());
    }

    #[test]
    fn combine_latest_opt4_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter::<[&str; 0]>([]);
        let s3 = stream::iter::<[bool; 0]>([]);
        let s4 = stream::iter::<[f64; 0]>([]);
        let result: Vec<_> = block_on(combine_latest_opt4(s1, s2, s3, s4).collect());
        assert_eq!(result, vec![(Some(1), None, None, None)]);
    }

    #[test]
    fn map_latest4_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5_f64]);
        let result: Vec<_> = block_on(
            map_latest4(s1, s2, s3, s4, |a, b, c, d| format!("{a}-{b}-{c}-{d}")).collect(),
        );
        assert_eq!(result, vec!["1-a-true-0.5"]);
    }

    #[test]
    fn map_latest_opt4_basic() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5_f64]);
        let result: Vec<_> = block_on(
            map_latest_opt4(s1, s2, s3, s4, |a, b, c, d| {
                (a.copied(), b.copied(), c.copied(), d.copied())
            })
            .collect(),
        );
        assert_eq!(result[0], (Some(1), None, None, None));
    }

    // -- trait-based API tests --

    #[test]
    fn trait_combine_latest_2() {
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on((s1, s2).combine_latest().collect());
        assert_eq!(result, vec![(1, "a"), (2, "a"), (2, "b"), (3, "b")]);
    }

    #[test]
    fn trait_combine_latest_opt_3() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter::<[bool; 0]>([]);
        let result: Vec<_> = block_on((s1, s2, s3).combine_latest_opt().collect());
        assert_eq!(
            result,
            vec![(Some(1), None, None), (Some(1), Some("a"), None),]
        );
    }

    #[test]
    fn trait_map_latest_4() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5_f64]);
        let result: Vec<_> = block_on(
            (s1, s2, s3, s4)
                .map_latest(|a, b, c, d| format!("{a}-{b}-{c}-{d}"))
                .collect(),
        );
        assert_eq!(result, vec!["1-a-true-0.5"]);
    }

    #[test]
    fn trait_map_latest_opt_2() {
        let s1 = stream::iter([1, 2]);
        let s2 = stream::iter(["a"]);
        let result: Vec<_> = block_on(
            (s1, s2)
                .map_latest_opt(|n, s| (n.copied(), s.copied()))
                .collect(),
        );
        assert_eq!(
            result,
            vec![(Some(1), None), (Some(1), Some("a")), (Some(2), Some("a")),]
        );
    }

    // -- higher-arity tests (5, 8, 12) --

    #[test]
    fn trait_combine_latest_5() {
        let s1 = stream::iter([1]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5]);
        let s5 = stream::iter([42u8]);
        let result: Vec<_> = block_on((s1, s2, s3, s4, s5).combine_latest().collect());
        assert_eq!(result, vec![(1, "a", true, 0.5, 42u8)]);
    }

    #[test]
    fn trait_combine_latest_8() {
        let streams = (
            stream::iter([1]),
            stream::iter([2]),
            stream::iter([3]),
            stream::iter([4]),
            stream::iter([5]),
            stream::iter([6]),
            stream::iter([7]),
            stream::iter([8]),
        );
        let result: Vec<_> = block_on(streams.combine_latest().collect());
        assert_eq!(result, vec![(1, 2, 3, 4, 5, 6, 7, 8)]);
    }

    #[test]
    fn trait_combine_latest_12() {
        let streams = (
            stream::iter([1]),
            stream::iter([2]),
            stream::iter([3]),
            stream::iter([4]),
            stream::iter([5]),
            stream::iter([6]),
            stream::iter([7]),
            stream::iter([8]),
            stream::iter([9]),
            stream::iter([10]),
            stream::iter([11]),
            stream::iter([12]),
        );
        let result: Vec<_> = block_on(streams.combine_latest().collect());
        assert_eq!(result, vec![(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)]);
    }

    #[test]
    fn trait_map_latest_12() {
        let streams = (
            stream::iter([1]),
            stream::iter([2]),
            stream::iter([3]),
            stream::iter([4]),
            stream::iter([5]),
            stream::iter([6]),
            stream::iter([7]),
            stream::iter([8]),
            stream::iter([9]),
            stream::iter([10]),
            stream::iter([11]),
            stream::iter([12]),
        );
        let result: Vec<_> = block_on(
            streams
                .map_latest(|a, b, c, d, e, f, g, h, i, j, k, l| {
                    a + b + c + d + e + f + g + h + i + j + k + l
                })
                .collect(),
        );
        assert_eq!(result, vec![78]);
    }

    // -- with_latest_from tests --

    #[test]
    fn with_latest_from_basic() {
        // Primary: [1, 2, 3], Secondary: ["a", "b"]
        // Round-robin: 1(P), "a"(S), 2(P), "b"(S), 3(P)
        // Emit on primary only when secondary has a value:
        //   1 → secondary not ready yet → skip
        //   "a" → secondary update → no emit
        //   2 → secondary="a" → emit (2, "a")
        //   "b" → secondary update → no emit
        //   3 → secondary="b" → emit (3, "b")
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on(with_latest_from(s1, s2).collect());
        assert_eq!(result, vec![(2, "a"), (3, "b")]);
    }

    #[test]
    fn with_latest_from_secondary_empty() {
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(Vec::<&str>::new());
        let result: Vec<_> = block_on(with_latest_from(s1, s2).collect());
        assert!(result.is_empty());
    }

    #[test]
    fn with_latest_from_primary_empty() {
        let s1 = stream::iter(Vec::<i32>::new());
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> = block_on(with_latest_from(s1, s2).collect());
        assert!(result.is_empty());
    }

    #[test]
    fn map_with_latest_from_basic() {
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(["a", "b"]);
        let result: Vec<_> =
            block_on(map_with_latest_from(s1, s2, |n, s| format!("{n}{s}")).collect());
        assert_eq!(result, vec!["2a", "3b"]);
    }

    #[test]
    fn map_with_latest_from_non_clone() {
        struct NonClone(i32);
        let s1 = stream::iter([NonClone(1), NonClone(2), NonClone(3)]);
        let s2 = stream::iter([NonClone(10)]);
        let result: Vec<_> = block_on(map_with_latest_from(s1, s2, |a, b| a.0 + b.0).collect());
        assert_eq!(result, vec![12, 13]);
    }

    #[test]
    fn trait_with_latest_from_3() {
        // Primary: [1, 2, 3], s2: ["a"], s3: [true]
        // Round-robin with 3 streams via nested select:
        //   select(select(s1, s2), s3)
        // The primary must emit after all secondaries have emitted.
        let s1 = stream::iter([1, 2, 3]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let result: Vec<_> = block_on((s1, s2, s3).with_latest_from().collect());
        // s1=1, s2="a", s1=2 → emit (2,"a",?) no s3 yet... depends on select ordering
        // With nest_select: select(select(s1,s2), s3)
        // Inner select alternates s1/s2: 1, "a", 2, 3
        // Outer select alternates inner/s3: 1, true, "a", 2, 3
        // So: 1(P, no secondaries), true(S), "a"(S), 2(P, all ready) → (2,"a",true), 3(P) → (3,"a",true)
        assert_eq!(result, vec![(2, "a", true), (3, "a", true)]);
    }

    #[test]
    fn trait_with_latest_from_5() {
        let s1 = stream::iter([1, 2, 3, 4, 5, 6]);
        let s2 = stream::iter(["a"]);
        let s3 = stream::iter([true]);
        let s4 = stream::iter([0.5]);
        let s5 = stream::iter([42u8]);
        let result: Vec<_> = block_on((s1, s2, s3, s4, s5).with_latest_from().collect());
        // The primary must emit after all 4 secondaries have cached values.
        // At minimum, the first few primary values will be skipped.
        assert!(!result.is_empty());
        // All outputs should have the same secondary values since they only have 1 item each
        for (_, s, b, d, u) in &result {
            assert_eq!(*s, "a");
            assert_eq!(*b, true);
            assert_eq!(*d, 0.5);
            assert_eq!(*u, 42u8);
        }
    }
}