valvector_compare_op

View page source

The valvector Compare Operators

Syntax

y op x

op

Equality Operators

== , !=

Ordered Operators

< , <= , >= , >

x

The operand x is a const valvector. If op is an equality operator, x can have any size. Otherwise it must be size one.

y

The operand y is a const valvector. If op is an equality operator, y can have any size. Otherwise it must be size one.

Return

The value returned by each of these operators is a bool

Example

The file valvector_compare_op.cpp is an example and test of the valvector compare operators.