refactor: replace sequenceOf() with emptySequence() for clarity

This commit is contained in:
monoid 2025-06-29 02:03:31 +09:00
parent ac1d5da01b
commit 7ae97961b2

View file

@ -58,7 +58,7 @@ class AndThenItem(val left: RegexItem, val right: RegexItem) : RegexItem {
} }
} else { } else {
// If right match fails, return an empty sequence // If right match fails, return an empty sequence
sequenceOf() emptySequence()
} }
} }
) )