tlborm
tlborm copied to clipboard
`${count(ident)}` is not equivalent to `${count(ident, 0)}`
${count(ident)}
: The number of times$ident
repeats in the inner-most repetition in total. This is equivalent to${count(ident, 0)}
.
refer to: https://github.com/rust-lang/rust/issues/83527#issuecomment-1070860171