Open dimitri-yatsenko opened 7 years ago
What would be a reason not to support either syntax? Use of |
sounds intuitive compared to having to use dj.OrList
.
The |
operator only works for objects of classes that we define and is therefore limited. dj.OrList
works for any types of restrictors. If dj.OrList
works, then i would rather have one correct way of doing something.
Do we support something like restricting by a cell array?
Yes, an OrList
is any list. So what we really need is an AndList
so that
r & a & b & c
can be expressed as
r & dj.AndList({a b c})
should be implemented with #96
The
|
operator is currently used to construct or-lists for restrictions but it is limited to restrictions by relations. Indatajoint-python
, we implement the explicitdj.OrList
object. I propose to match the matlab implementation and deprecate the|
operator.