<=
:
For example, the tuple
is in
, therefore
2 <= 2
is true.
The tuple
is not in
, therefore
3 <= 2
is false.
Generally speaking, in programming, we form a tuple, then ask whether the tuple is in a relation or not.
The application of relations, other than comparison operators,
is somewhat diverse. For example, in Component Object Model (COM)
programming, an interface needs to be ``equivalent'' with respect to the
relation QueryInterface()
. This means an interface needs to be
reflexive, symmetric and transitive with respect to the relation
QueryInterface()
. COM programming predates Microsoft .net, and
forms the framework of server-client programming that goes well beyond
the flexibilities of object-oriented programming.