tables::operator ==,!=,<,<=,>,>=

1.
template<is_primitive_type P>
inline column<bool_t> operator==(const column<P>& lhs, const column<P>& rhs)

2.
template<is_primitive_type P>
inline column<bool_t> operator==(const column<P>& lhs, const P cte);

3.
template<is_primitive_type P>
inline column<bool_t> operator==(const P cte, column<P>& rhs)


4.
template<is_primitive_type P>
inline column<bool_t> operator!=(const column<P>& lhs, const column<P>& rhs)

5.
template<is_primitive_type P>
inline column<bool_t> operator!=(const column<P>& lhs, const P cte);

6.
template<is_primitive_type P>
inline column<bool_t> operator!=(const P cte, column<P>& rhs)

7.
template<is_primitive_type P>
inline column<bool_t> operator<(const column<P>& lhs, const column<P>& rhs)

8.
template<is_primitive_type P>
inline column<bool_t> operator<(const column<P>& lhs, const P cte);

9.
template<is_primitive_type P>
inline column<bool_t> operator<(const P cte, column<P>& rhs)

10.
template<is_primitive_type P>
inline column<bool_t> operator<=(const column<P>& lhs, const column<P>& rhs)

11
template<is_primitive_type P>
inline column<bool_t> operator<=(const column<P>& lhs, const P cte);

12.
template<is_primitive_type P>
inline column<bool_t> operator<=const P cte, column<P>& rhs)

13.
template<is_primitive_type P>
inline column<bool_t> operator>(const column<P>& lhs, const column<P>& rhs)

14
template<is_primitive_type P>
inline column<bool_t> operator>(const column<P>& lhs, const P cte);

15.
template<is_primitive_type P>
inline column<bool_t> operator>(const P cte, column<P>& rhs)

16.
template<is_primitive_type P>
inline column<bool_t> operator>=(const column<P>& lhs, const column<P>& rhs)

17.
template<is_primitive_type P>
inline column<bool_t> operator>=(const column<P>& lhs, const P cte);

18.
template<is_primitive_type P>
inline column<bool_t> operator>=(const P cte, column<P>& rhs)

1)

Column-wise equality comparison of elements of lhs and lhs. Implementation calls eq

2)

Column-wise equality comparison of elements of lhs and cte. Implementation calls eq

3)

Column-wise equality comparison of cte and elemts of lhs. Implementation calls eq


4)

Column-wise inequality comparison of elements of lhs and lhs. Implementation calls ne

5)

Column-wise inequality comparison of elements of lhs and cte. Implementation calls ne

6)

Column-wise inequality comparison of cte and elemts of lhs. Implementation calls ne


7)

Column-wise less-than comparison of elements of lhs and lhs. Implementation calls lt

8)

Column-wise less-than comparison of elements of lhs and cte. Implementation calls lt

9)

Column-wise less-than comparison of cte and elemts of lhs. Implementation calls lt


10)

Column-wise less-or-equal comparison of elements of lhs and lhs. Implementation calls le

18)

Column-wise less-or-equal comparison of elements of lhs and cte. Implementation calls le

12)

Column-wise less-or-equal comparison of cte and elemts of lhs. Implementation calls le


13)

Column-wise greater-than comparison of elements of lhs and lhs. Implementation calls gt

14)

Column-wise greater-than comparison of elements of lhs and cte. Implementation calls gt

15)

Column-wise greater-than comparison of cte and elemts of lhs. Implementation calls gt


13)

Column-wise greater-or-equal comparison of elements of lhs and lhs. Implementation calls ge

17)

Column-wise greater-or-equal comparison of elements of lhs and cte. Implementation calls ge

18)

Column-wise greater-or-equal comparison of cte and elemts of lhs. Implementation calls ge

See also