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
Please do not post any internal, closed source snippets on this public issue tracker!
Description
Strings are logically sets of tuples. Removing from the start and the end works fine, but excluding tuples from the middle replaces them with null values: (@: ..., @char: 0) instead of removing them outright.
Steps to Reproduce
@> "gap" where .@ != 1
Expected behavior:
{(@: 0, @char: 103), (@: 2, @char: 112)}
Actual behavior:
'g\x00p'
The text was updated successfully, but these errors were encountered:
* simplify Set.ArrayEnumerator signature
ArrayEnumerator returns an OffsetValueEnumerator and a bool which were
unnecessary. Now it just returns a ValueEnumerator and returns a nil
if it doesn't have an ArrayEnumerator (dictionary). This commit also includes
some changes to BytesTuple because there was unnecessary code.
* return empty enumerator
* fix genericSet.ArrayEnumerator
* panic on emptyEnumerator.Current
Please do not post any internal, closed source snippets on this public issue tracker!
Description
Strings are logically sets of tuples. Removing from the start and the end works fine, but excluding tuples from the middle replaces them with null values:
(@: ..., @char: 0)
instead of removing them outright.Steps to Reproduce
@> "gap" where .@ != 1
Expected behavior:
Actual behavior:
The text was updated successfully, but these errors were encountered: