N
AME
is_lt
- compare two svalues
S
YNTAX
#include <svalue.h>
int is_lt(struct svalue *
a
, struct svalue *
b
);
D
ESCRIPTION
This is the equivialent of the Pike operator `<. It compares the contents of two svalues and returns true if the 'a' is lesser than 'b'. It will give an error if the types are not comparable.
N
OTA
B
ENE
is_gt, is_ge and is_le are also available. They are all macros that call this function.
K
EYWORDS
svalue
S
EE
A
LSO
is_eq
and
is_equal