mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
fix: in
operator
* remove `In` trait, `__in__`, `__notin__` function * desugar to `__contains__` * impl Collection for Array, Set, Tuple
This commit is contained in:
parent
4f93c393c0
commit
2e9fb48f2e
19 changed files with 154 additions and 142 deletions
|
@ -16,7 +16,7 @@ from _erg_str import Str, StrMut
|
|||
from _erg_array import Array
|
||||
from _erg_dict import Dict
|
||||
from _erg_set import Set
|
||||
from _erg_in_operator import in_operator
|
||||
from _erg_contains_operator import contains_operator
|
||||
from _erg_mutate_operator import mutate_operator
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue