|
250 | 250 | (.isArray js/Array x)
|
251 | 251 | (instance? js/Array x)))
|
252 | 252 |
|
| 253 | +(declare Integer) |
| 254 | + |
253 | 255 | (defn ^boolean number?
|
254 | 256 | "Returns true if x is a JavaScript Number or BigInt"
|
255 | 257 | [x]
|
256 | 258 | (or (cljs.core/js-number? x)
|
257 |
| - (cljs.core/bigint? x))) |
| 259 | + (cljs.core/bigint? x) |
| 260 | + (instance? Integer x))) |
| 261 | + |
| 262 | +(defn ^boolean bigint? |
| 263 | + "Returns true if x is a JavaScript Number or BigInt" |
| 264 | + [x] |
| 265 | + (or (cljs.core/bigint? x) |
| 266 | + (instance? Integer x))) |
258 | 267 |
|
259 | 268 | (defn not
|
260 | 269 | "Returns true if x is logical false, false otherwise."
|
|
342 | 351 |
|
343 | 352 | (if (and (exists? js/Symbol)
|
344 | 353 | (identical? (goog/typeOf js/Symbol) "function"))
|
345 |
| - (def ITER_SYMBOL (.-iterator js/Symbol)) |
346 |
| - (def ITER_SYMBOL "@@iterator")) |
| 354 | + (do |
| 355 | + (def ITER_SYMBOL (.-iterator js/Symbol)) |
| 356 | + (def TO_PRIM_SYMBOL (.-toPrimitive js/Symbol))) |
| 357 | + (do |
| 358 | + (def ITER_SYMBOL "@@iterator") |
| 359 | + (def TO_PRIM_SYMBOL "@@toPrimitive"))) |
347 | 360 |
|
348 | 361 | (def ^{:jsdoc ["@enum {string}"]}
|
349 | 362 | CHAR_MAP
|
|
1016 | 1029 | (and (<= n js/Number.MAX_SAFE_INTEGER)
|
1017 | 1030 | (>= n js/Number.MIN_SAFE_INTEGER)))
|
1018 | 1031 |
|
| 1032 | +(declare hash) |
| 1033 | + |
| 1034 | +(defn hash-bigint [n] |
| 1035 | + (if (safe-value? n) |
| 1036 | + (hash (js/Number. n)) |
| 1037 | + (hash-string (.toString n 32)))) |
| 1038 | + |
| 1039 | +(defn hash-number [n] |
| 1040 | + (if ^boolean (js/isFinite n) |
| 1041 | + (js-mod (Math/floor n) 2147483647) |
| 1042 | + (case n |
| 1043 | + ##Inf 2146435072 |
| 1044 | + ##-Inf -1048576 |
| 1045 | + 2146959360))) |
| 1046 | + |
1019 | 1047 | (defn hash
|
1020 | 1048 | "Returns the hash code of its argument. Note this is the hash code
|
1021 | 1049 | consistent with =."
|
1022 | 1050 | [o]
|
1023 | 1051 | (cond
|
1024 |
| - (implements? IHash o) |
1025 |
| - (bit-xor (-hash o) 0) |
1026 |
| - |
1027 |
| - (cljs.core/bigint? o) |
1028 |
| - (if (safe-value? o) |
1029 |
| - (hash (js/Number. o)) |
1030 |
| - (hash-string (.toString o 32))) |
1031 |
| - |
1032 |
| - (number? o) |
1033 |
| - (if ^boolean (js/isFinite o) |
1034 |
| - (js-mod (Math/floor o) 2147483647) |
1035 |
| - (case o |
1036 |
| - ##Inf |
1037 |
| - 2146435072 |
1038 |
| - ##-Inf |
1039 |
| - -1048576 |
1040 |
| - 2146959360)) |
1041 |
| - |
| 1052 | + (implements? IHash o) (bit-xor (-hash o) 0) |
| 1053 | + (bigint? o) (hash-bigint o) |
| 1054 | + (number? o) (hash-number o) |
1042 | 1055 | ;; note: mirrors Clojure's behavior on the JVM, where the hashCode is
|
1043 | 1056 | ;; 1231 for true and 1237 for false
|
1044 | 1057 | ;; http://docs.oracle.com/javase/7/docs/api/java/lang/Boolean.html#hashCode%28%29
|
1045 | 1058 | (true? o) 1231
|
1046 |
| - |
1047 | 1059 | (false? o) 1237
|
1048 |
| - |
1049 |
| - (string? o) |
1050 |
| - (m3-hash-int (hash-string o)) |
1051 |
| - |
1052 |
| - (instance? js/Date o) |
1053 |
| - (bit-xor (.valueOf o) 0) |
1054 |
| - |
| 1060 | + (string? o) (m3-hash-int (hash-string o)) |
| 1061 | + (instance? js/Date o) (bit-xor (.valueOf o) 0) |
1055 | 1062 | (nil? o) 0
|
1056 |
| - |
1057 |
| - :else |
1058 |
| - (bit-xor (-hash o) 0))) |
| 1063 | + :else (bit-xor (-hash o) 0))) |
1059 | 1064 |
|
1060 | 1065 | (defn hash-combine [seed hash]
|
1061 | 1066 | ; a la boost
|
|
1094 | 1099 |
|
1095 | 1100 | (declare get)
|
1096 | 1101 |
|
| 1102 | +;; wrapper type to simplify bigint integration |
| 1103 | +;; Integer has two fields, if number is null then beyond the range of |
| 1104 | +;; JS safe integral values. bigint is set for comparisons. |
| 1105 | +(deftype Integer [number bigint ^:mutable __hash] |
| 1106 | + Object |
| 1107 | + (toString [_] |
| 1108 | + (.toString bigint)) |
| 1109 | + (equiv [this other] (-equiv this other)) |
| 1110 | + |
| 1111 | + IEquiv |
| 1112 | + (-equiv [_ other] |
| 1113 | + (cond |
| 1114 | + (instance? Integer other) (if (nil? number) |
| 1115 | + (== bigint (.-bigint other)) |
| 1116 | + (== number (.-number other))) |
| 1117 | + (js-number? other) (== number other) |
| 1118 | + (bigint? other) (== bigint other) |
| 1119 | + :else false)) |
| 1120 | + |
| 1121 | + IHash |
| 1122 | + (-hash [_] |
| 1123 | + (if (nil? __hash) |
| 1124 | + (if (nil? bigint) |
| 1125 | + (set! __hash (hash-number number)) |
| 1126 | + (set! __hash (hash-bigint bigint)))) |
| 1127 | + __hash) |
| 1128 | + |
| 1129 | + IPrintWithWriter |
| 1130 | + (-pr-writer [_ writer _] |
| 1131 | + (-write writer (or number bigint)) |
| 1132 | + (-write writer "N"))) |
| 1133 | + |
| 1134 | +(unchecked-set (.-prototype Integer) TO_PRIM_SYMBOL |
| 1135 | + (fn [hint] |
| 1136 | + (this-as this |
| 1137 | + (if (nil? (.-number this)) |
| 1138 | + (.-bigint this) |
| 1139 | + (.-number this))))) |
| 1140 | + |
1097 | 1141 | (deftype Symbol [ns name str ^:mutable _hash _meta]
|
1098 | 1142 | Object
|
1099 | 1143 | (toString [_] str)
|
|
1444 | 1488 | (extend-type number
|
1445 | 1489 | IEquiv
|
1446 | 1490 | (-equiv [x o]
|
1447 |
| - (if (cljs.core/bigint? o) |
1448 |
| - (cljs.core/coercive-= x o) |
1449 |
| - (identical? x o)))) |
| 1491 | + (cond |
| 1492 | + (bigint? o) (coercive-= x o) |
| 1493 | + (instance? Integer o) (-equiv o x) |
| 1494 | + :else (identical? x o)))) |
1450 | 1495 |
|
1451 | 1496 | (extend-type bigint
|
1452 | 1497 | IEquiv
|
1453 | 1498 | (-equiv [x o]
|
1454 |
| - (if (cljs.core/js-number? o) |
1455 |
| - (cljs.core/coercive-= x o) |
1456 |
| - (identical? x o)))) |
| 1499 | + (cond |
| 1500 | + (js-number? o) (coercive-= x o) |
| 1501 | + (instance? Integer o) (-equiv o x) |
| 1502 | + :else (identical? x o)))) |
1457 | 1503 |
|
1458 | 1504 | (declare with-meta)
|
1459 | 1505 |
|
@@ -6735,7 +6781,7 @@ reduces them without incurring seq initialization"
|
6735 | 6781 | :else (recur (+ i 2))))))
|
6736 | 6782 |
|
6737 | 6783 | (defn- equal-number? [x y]
|
6738 |
| - (and (number? x) (number? y) (cljs.core/coercive-= x y))) |
| 6784 | + (and (number? x) (number? y) (-equiv x y))) |
6739 | 6785 |
|
6740 | 6786 | (defn- array-index-of-number [arr k]
|
6741 | 6787 | (let [len (alength arr)]
|
|
0 commit comments