Test for equality between two objects
This function tests its two arguments for equalit and returns 1
if they are equal, and 0 otherwise. To be equal, the data type of
the arguments must match and the values of the objects must
reference the same underlying object.
__eqs (1, 1) ===> 1
__eqs (1, 1.0) ===> 0
__eqs ("a", 1) ===> 0
__eqs ([1,2], [1,2]) ===> 0
This function should be thought of as a test for "sameness".
- slangrtl
-
__class_id,
__class_type,
__get_reference,
__is_initialized,
__pop_args,
__push_args,
_nargs,
_typeof,
array_info,
dup,
is_defined,
is_struct_type,
length,
typecast,
typeof
|