forked fromdotnet/fsharp
- Notifications
You must be signed in to change notification settings - Fork0
Commitf11c636
Add NonStructuralComparison ops
commit 3d64e6c4a6f9b9760e7e77e3031dff7d437169f6Author: latkin <latkin@microsoft.com>Date: Tue Dec 16 14:07:12 2014 -0800 Adding conditional compilation where requiredcommit 8a5a33c99fcc82718adcd78146b59fe8f93321c9Author: latkin <latkin@microsoft.com>Date: Tue Dec 16 13:29:48 2014 -0800 Updating surface area testscommit 6c6925633d5c95bb0d34e16377651f6d62913ee1Author: latkin <latkin@microsoft.com>Date: Tue Dec 16 12:00:45 2014 -0800 Small test changescommit 3b4f1355ca0b5a022e18811a84d1fc6cda04b96eAuthor: latkin <latkin@microsoft.com>Date: Tue Dec 16 11:59:03 2014 -0800 Fix doc commentcommit 321c1abfe00bea20316daccc41bd33a873b50fe5Merge:ecfa21c 979c99dAuthor: latkin <latkin@microsoft.com>Date: Tue Dec 16 11:03:26 2014 -0800 Merge branch 'non-structural-eq-compare' ofhttps://git01.codeplex.com/forks/dsyme/cleanup into comparisoncommit 979c99d6605a7b5b7540d94d0446d734728743c6Author: Don Syme <dsyme@microsoft.com>Date: Tue Dec 2 18:20:07 2014 +0000 fix string comparison and add tests for decimalcommit dc46cc5c9b2871711c22c9f364604361d8a14fefAuthor: Don Syme <dsyme@microsoft.com>Date: Tue Nov 11 12:33:49 2014 +0000 Add HashIdentity.NonStructural and ComparisonIdentity.NonStructuralcommit 5d84b340bd94579388a5394c8138e1cb99433cbcAuthor: Don Syme <dsyme@microsoft.com>Date: Tue Nov 11 11:38:03 2014 +0000 rename to NonStructuralComparisoncommit 768dfb521bf7bd25135e8e1a4603a15b86360903Author: Don Syme <dsyme@microsoft.com>Date: Tue Nov 11 11:35:20 2014 +0000 rename to NonStructuralOperatorscommit 9f919071cd22d8ec994cfad6d7eb0cb209d6e164Author: Don Syme <dsyme@microsoft.com>Date: Tue Nov 11 11:29:21 2014 +0000 add StaticCOmparisonOperators to LeafExpressionConvert for symmetrycommit 9c59edcc43275a7060547df012e97b52c7d08e89Author: Don Syme <dsyme@microsoft.com>Date: Tue Nov 11 11:09:26 2014 +0000 add testing and small fixes for StaticComparisonOperatorscommit 982da7b725a3cd8c25591f40e9a0e3d36d26bc00Author: Don Syme <dsyme@microsoft.com>Date: Mon Nov 10 21:27:29 2014 +0000 fast structural comparison operators1 parentecfa21c commitf11c636
File tree
10 files changed
+653
-104
lines changed- src/fsharp
- FSharp.Core.Unittests
- FSharp.Core
- tests/fsharp/core
- libtest
- queriesLeafExpressionConvert
10 files changed
+653
-104
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
| 208 | + | |
208 | 209 | | |
209 | 210 | | |
210 | 211 | | |
| |||
289 | 290 | | |
290 | 291 | | |
291 | 292 | | |
| 293 | + | |
292 | 294 | | |
293 | 295 | | |
294 | 296 | | |
| |||
2443 | 2445 | | |
2444 | 2446 | | |
2445 | 2447 | | |
| 2448 | + | |
| 2449 | + | |
| 2450 | + | |
| 2451 | + | |
| 2452 | + | |
| 2453 | + | |
| 2454 | + | |
| 2455 | + | |
| 2456 | + | |
| 2457 | + | |
| 2458 | + | |
| 2459 | + | |
| 2460 | + | |
| 2461 | + | |
2446 | 2462 | | |
2447 | 2463 | | |
2448 | 2464 | | |
| |||
2553 | 2569 | | |
2554 | 2570 | | |
2555 | 2571 | | |
| 2572 | + | |
2556 | 2573 | | |
2557 | 2574 | | |
2558 | 2575 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
| 202 | + | |
202 | 203 | | |
203 | 204 | | |
204 | 205 | | |
| |||
283 | 284 | | |
284 | 285 | | |
285 | 286 | | |
| 287 | + | |
286 | 288 | | |
287 | 289 | | |
288 | 290 | | |
| |||
2430 | 2432 | | |
2431 | 2433 | | |
2432 | 2434 | | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + | |
| 2438 | + | |
| 2439 | + | |
| 2440 | + | |
| 2441 | + | |
| 2442 | + | |
| 2443 | + | |
| 2444 | + | |
| 2445 | + | |
| 2446 | + | |
| 2447 | + | |
| 2448 | + | |
2433 | 2449 | | |
2434 | 2450 | | |
2435 | 2451 | | |
| |||
2540 | 2556 | | |
2541 | 2557 | | |
2542 | 2558 | | |
| 2559 | + | |
2543 | 2560 | | |
2544 | 2561 | | |
2545 | 2562 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
236 | 243 | | |
237 | 244 | | |
238 | 245 | | |
| |||
487 | 494 | | |
488 | 495 | | |
489 | 496 | | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
490 | 504 | | |
491 | 505 | | |
492 | 506 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
31 | 36 | | |
32 | 37 | | |
33 | 38 | | |
| |||
37 | 42 | | |
38 | 43 | | |
39 | 44 | | |
40 | | - | |
41 | 45 | | |
42 | 46 | | |
43 | | - | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
44 | 55 | | |
45 | 56 | | |
46 | 57 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
18 | 24 | | |
19 | 25 | | |
20 | 26 | | |
| |||
24 | 30 | | |
25 | 31 | | |
26 | 32 | | |
27 | | - | |
28 | | - | |
29 | 33 | | |
30 | 34 | | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
31 | 38 | | |
32 | 39 | | |
33 | 40 | | |
| |||
0 commit comments
Comments
(0)