mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Allow not_in as keyword over notin, but still allow notin to work
This commit is contained in:
@@ -1363,7 +1363,7 @@ bit_set_type :: proc() {
|
||||
incl(&x, 'F');
|
||||
assert('F' in x);
|
||||
excl(&x, 'F');
|
||||
assert('F' notin x);
|
||||
assert('F' not_in x);
|
||||
|
||||
y |= {1, 4, 2};
|
||||
assert(2 in y);
|
||||
|
||||
@@ -1271,7 +1271,7 @@ bit_set_type :: proc() {
|
||||
incl(&x, 'F');
|
||||
assert('F' in x);
|
||||
excl(&x, 'F');
|
||||
assert('F' notin x);
|
||||
assert('F' not_in x);
|
||||
|
||||
y |= {1, 4, 2};
|
||||
assert(2 in y);
|
||||
|
||||
Reference in New Issue
Block a user