Revert seq synonym refactor

This commit is contained in:
Václav Volhejn
2025-11-09 20:21:19 +01:00
parent b7827cb89f
commit 2fa8ed1424
+5 -3
View File
@@ -1566,6 +1566,11 @@ export function fastcat(...pats) {
return result;
}
/** See `fastcat` */
export function sequence(...pats) {
return fastcat(...pats);
}
/** Like **cat**, but the items are crammed into one cycle.
* @tags combiners
* @synonyms seq, fastcat
@@ -1579,9 +1584,6 @@ export function fastcat(...pats) {
* note("c4(5,8)")
* )
*/
export function sequence(...pats) {
return fastcat(...pats);
}
export function seq(...pats) {
return fastcat(...pats);