Changeset 26961 in webkit for trunk/JavaScriptCore/kjs/operations.h
- Timestamp:
- Oct 24, 2007, 1:53:45 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/operations.h
r26945 r26961 45 45 bool equal(ExecState *exec, JSValue *v1, JSValue *v2); 46 46 bool strictEqual(ExecState *exec, JSValue *v1, JSValue *v2); 47 /**48 * This operator performs an abstract relational comparison of the two49 * arguments that can be of arbitrary type. If possible, conversions to the50 * string or number type will take place before the comparison.51 *52 * @return 1 if v1 is "less-than" v2, 0 if the relation is "greater-than-or-53 * equal". -1 if the result is undefined.54 */55 int relation(ExecState *exec, JSValue *v1, JSValue *v2);56 47 int maxInt(int d1, int d2); 57 48 int minInt(int d1, int d2);
Note:
See TracChangeset
for help on using the changeset viewer.