Rename Seq2 to Seq

This commit is contained in:
b
2026-07-24 16:25:29 -06:00
parent e60f6ae015
commit f7ddbb8fc4
3 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{{/* SPDX-License-Identifier: Unlicense */ -}}
{{define "func"}}{{if gt . 1 -}}
func Seq{{.}}[In, Out{{range .Count}}, T{{.}}{{end}} any](
func Seq{{if gt . 2}}{{.}}{{end}}[In, Out{{range .Count}}, T{{.}}{{end}} any](
{{- range .Count}}
p{{.}} Parser[In, T{{.}}],{{end}}
f func({{range .Count}}{{if ne . 1}}, {{end}}T{{.}}{{end}}) Out,