Revert seq synonym refactor

This commit is contained in:
Václav Volhejn 2025-11-09 20:21:19 +01:00
parent b7827cb89f
commit 2fa8ed1424

View file

@ -1566,6 +1566,11 @@ export function fastcat(...pats) {
return result; return result;
} }
/** See `fastcat` */
export function sequence(...pats) {
return fastcat(...pats);
}
/** Like **cat**, but the items are crammed into one cycle. /** Like **cat**, but the items are crammed into one cycle.
* @tags combiners * @tags combiners
* @synonyms seq, fastcat * @synonyms seq, fastcat
@ -1579,9 +1584,6 @@ export function fastcat(...pats) {
* note("c4(5,8)") * note("c4(5,8)")
* ) * )
*/ */
export function sequence(...pats) {
return fastcat(...pats);
}
export function seq(...pats) { export function seq(...pats) {
return fastcat(...pats); return fastcat(...pats);