orAny method

Condition<EntityT> orAny(
  1. List<Condition<EntityT>> rh
)

Implementation

Condition<EntityT> orAny(List<Condition<EntityT>> rh) =>
    _ConditionGroupAny<EntityT>((this is _ConditionGroupAny)
        // no need for brackets when merging same types
        ? [...(this as _ConditionGroupAny<EntityT>)._conditions, ...rh]
        : [this, ...rh]);