Files
composable_kernel/include/ck
Max Podkorytov 9942fd6ab9 Replace sequence_merge O(log N) recursion with O(1) fold expression
Use operator| with fold expression (Seqs{} | ...) to merge sequences
in O(1) template depth instead of O(log N) binary tree recursion.

- Reduces sequence_merge instantiations from 449 to 167 (63% reduction)
- Total template instantiations: 47,186 → 46,974 (-212)
- ADL finds operator| since Sequence is in ck namespace
2026-01-16 21:46:27 -06:00
..
2025-11-27 08:48:00 +01:00