You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In `#count`, "*" is treated as if it is effectively UINT32_MAX. That
was also the intention for `#count_with_duplicates`.
Unlike `#count`, which can assume that `*` only appears at most once,
`#count_with_duplicates` needs to check each entry.
This means that, e.g:
SequenceSet["#{UINT32_MAX}:*"].count_with_duplicates == 1
SequenceSet["#{UINT32_MAX},*"].count_with_duplicates == 2
0 commit comments