Produce an :func:`_expression.all_` clause against the parent object. See the documentation for :func:`_sql.all_` for examples. .. note:: be sure to not confuse the newer :meth:`_sql.ColumnOperators.all_` method with the **legacy** version of this me
(self)
| 2001 | return self.operate(any_op) |
| 2002 | |
| 2003 | def all_(self) -> ColumnOperators: |
| 2004 | """Produce an :func:`_expression.all_` clause against the |
| 2005 | parent object. |
| 2006 | |
| 2007 | See the documentation for :func:`_sql.all_` for examples. |
| 2008 | |
| 2009 | .. note:: be sure to not confuse the newer |
| 2010 | :meth:`_sql.ColumnOperators.all_` method with the **legacy** |
| 2011 | version of this method, the :meth:`_types.ARRAY.Comparator.all` |
| 2012 | method that's specific to :class:`_types.ARRAY`, which uses a |
| 2013 | different calling style. |
| 2014 | |
| 2015 | """ |
| 2016 | return self.operate(all_op) |
| 2017 | |
| 2018 | def __add__(self, other: Any) -> ColumnOperators: |
| 2019 | """Implement the ``+`` operator. |