1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
//! [![CI](https://github.com/Kixiron/lasso/workflows/CI/badge.svg)](https://github.com/Kixiron/lasso)
//! [![Security Audit](https://github.com/Kixiron/lasso/workflows/Security%20Audit/badge.svg)](https://github.com/Kixiron/lasso)
//! [![Coverage](https://coveralls.io/repos/github/Kixiron/lasso/badge.svg?branch=master)](https://coveralls.io/github/Kixiron/lasso?branch=master)
//! [![LoC](https://tokei.rs/b1/github/Kixiron/lasso)](https://github.com/Kixiron/lasso)
//! [![Docs.rs](https://docs.rs/lasso/badge.svg)](https://docs.rs/lasso)
//! [![Crates.io](https://img.shields.io/crates/v/lasso.svg)](https://crates.io/crates/lasso)
//!
//! A concurrent string interner that allows strings to be cached with a minimal memory footprint,
//! associating them with a unique [key] that can be used to retrieve them at any time. [`Lassos`] allow `O(1)`
//! internment and resolution and can be turned into a [`ReadOnlyLasso`] to allow for contention-free resolutions
//! with both key to str and str to key operations. It can also be turned into a [`ResolverLasso`] with only
//! key to str operations for the lowest possible memory usage
//!
//! ## Which Interner do I use?
//!
//! No matter which interner you decide to use, you must start with a [`Lasso`], as that is the only way to intern strings and
//! the only way to get the other two interner types. As your program progresses though you may not need to intern strings anymore,
//! and at that point you may choose either a [`ReadOnlyLasso`] or a [`ResolverLasso`]. If you need to go from str to key you
//! should use a [`ReadOnlyLasso`], but anything else should use a [`ResolverLasso`].
//!
//! | Interner          | Thread-safe | Intern String | key to str | str to key | Contention Free | Relative Memory Usage |
//! | ----------------- | :---------: | :-----------: | :--------: | :--------: | :-------------: | :-------------------: |
//! | [`Lasso`]         |      ✅      |       ✅       |     ✅      |     ✅      |        ❌        |         Most          |
//! | [`ReadOnlyLasso`] |      ✅      |       ❌       |     ✅      |     ✅      |        ✅        |        Middle         |
//! | [`ResolverLasso`] |      ✅      |       ❌       |     ✅      |     ❌      |        ✅        |         Least         |
//!
//! ## Example: Interning Strings across threads
//!
//! ```rust
//! use lasso::Lasso;
//! use std::{thread, sync::Arc};
//!
//! let lasso = Arc::new(Lasso::default());
//! let hello = lasso.get_or_intern("Hello, ");
//!
//! let l = Arc::clone(&lasso);
//! let world = thread::spawn(move || {
//!     l.get_or_intern("World!".to_string())
//! })
//! .join()
//! .unwrap();
//!
//! let world_2 = lasso.get_or_intern("World!");
//!
//! assert_eq!("Hello, ", lasso.resolve(&hello));
//! assert_eq!("World!", lasso.resolve(&world));
//!
//! // These are the same because they interned the same string
//! assert_eq!(world, world_2);
//! assert_eq!(lasso.resolve(&world), lasso.resolve(&world_2));
//! ```
//!
//! # Example: Resolving Strings
//!
//! ```rust
//! use lasso::Lasso;
//!
//! let lasso = Lasso::default();
//! let key = lasso.intern("Hello, World!");
//!
//! assert_eq!("Hello, World!", lasso.resolve(&key));
//! ```
//!
//! ## Example: Creating a ReadOnlyLasso
//!
//! ```rust
//! use lasso::Lasso;
//! use std::{thread, sync::Arc};
//!
//! let lasso = Lasso::default();
//! let key = lasso.intern("Contention free!");
//!
//! // Can be used for resolving strings with zero contention, but not for interning new ones
//! let read_only_lasso = Arc::new(lasso.into_read_only());
//!
//! let lasso = Arc::clone(&read_only_lasso);
//! thread::spawn(move || {
//!     assert_eq!("Contention free!", lasso.resolve(&key));
//! });
//!
//! assert_eq!("Contention free!", read_only_lasso.resolve(&key));
//! ```
//!
//! ## Example: Creating a ResolverLasso
//!
//! ```rust
//! use lasso::Lasso;
//! use std::{thread, sync::Arc};
//!
//! let lasso = Lasso::default();
//! let key = lasso.intern("Contention free!");
//!
//! // Can be used for resolving strings with zero contention and the lowest possible memory consumption,
//! // but not for interning new ones
//! let resolver_lasso = Arc::new(lasso.into_resolver());
//!
//! let lasso = Arc::clone(&resolver_lasso);
//! thread::spawn(move || {
//!     assert_eq!("Contention free!", lasso.resolve(&key));
//! });
//!
//! assert_eq!("Contention free!", resolver_lasso.resolve(&key));
//! ```
//!
//! ## Cargo Features
//!
//! * `default` - By default the `ahasher` feature is enabled
//! * `ahasher` - Use [`ahash::RandomState`] as the default hasher for extra speed, without this then std's [`RandomState`] will be used
//!
//! [key]: crate::Key
//! [`Lasso`]: crate::Lasso
//! [`Lassos`]: crate::Lasso
//! [`ReadOnlyLasso`]: crate::ReadOnlyLasso
//! [`ResolverLasso`]: crate::ResolverLasso
//! [`ahash::RandomState`]: https://docs.rs/ahash/0.3.2/ahash/
//! [`RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html

use core::{
    hash::BuildHasher,
    marker::PhantomData,
    mem,
    num::{NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize},
};
use dashmap::DashMap;
use std::{collections::HashMap, sync::Mutex};

// Enable ahash for the ahasher feature
#[cfg(feature = "ahasher")]
use ahash::RandomState;
#[cfg(not(feature = "ahasher"))]
use std::collections::hash_map::RandomState;

/// A concurrent string interner that caches strings quickly with a minimal memory footprint,
/// returning a unique key to re-access it with `O(1)` internment and resolution.
///
/// By default Lasso uses the [`Cord`] type for keys and `RandomState` as its hasher where `RandomState`
/// is [`ahash::RandomState`] with the `ahasher` feature and std's [`RandomState`] without it
///
/// [`Cord`]: crate::Cord
/// [`ahash::RandomState`]: https://docs.rs/ahash/0.3.2/ahash/struct.RandomState.html
/// [`RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
#[derive(Debug)]
pub struct Lasso<K: Key = Cord, S: BuildHasher + Clone = RandomState> {
    /// Map that allows `str` -> `key` resolution
    map: DashMap<&'static str, K, S>,
    /// Vec that allows `key` -> `str` resolution
    strings: Mutex<Vec<&'static str>>,
}

impl<K: Key> Lasso<K, RandomState> {
    /// Create a new Lasso
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Lasso, Cord};
    /// use std::{thread, sync::Arc};
    ///
    /// let lasso: Arc<Lasso<Cord>> = Arc::new(Lasso::new());
    /// let hello = lasso.intern("Hello, ".to_string());
    ///
    /// let l = Arc::clone(&lasso);
    /// let world = thread::spawn(move || {
    ///     l.intern("World!".to_string())
    /// })
    /// .join()
    /// .unwrap();
    ///
    /// assert_eq!("Hello, ", lasso.resolve(&hello));
    /// assert_eq!("World!", lasso.resolve(&world));
    /// ```
    ///
    #[inline]
    pub fn new() -> Self {
        Self {
            map: DashMap::with_hasher(RandomState::new()),
            strings: Mutex::new(Vec::new()),
        }
    }

    /// Create a new Lasso with the specified capacity. The interner will be able to hold `capacity`
    /// strings without reallocating. If capacity is 0, the interner will not allocate.
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Lasso, Cord};
    ///
    /// let lasso: Lasso<Cord> = Lasso::with_capacity(10);
    /// ```
    ///
    #[inline]
    pub fn with_capacity(capacity: usize) -> Self {
        Self {
            map: DashMap::with_capacity_and_hasher(capacity, RandomState::new()),
            strings: Mutex::new(Vec::with_capacity(capacity)),
        }
    }
}

impl<K, S> Lasso<K, S>
where
    K: Key,
    S: BuildHasher + Clone,
{
    /// Creates an empty Lasso which will use the given hasher for its internal hashmap
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Lasso};
    /// use std::collections::hash_map::RandomState;
    ///
    /// let lasso: Lasso<Cord, RandomState> = Lasso::with_hasher(RandomState::new());
    /// ```
    ///
    #[inline]
    pub fn with_hasher(hash_builder: S) -> Self {
        Self {
            map: DashMap::with_hasher(hash_builder),
            strings: Mutex::new(Vec::new()),
        }
    }

    /// Creates a new Lasso with the specified capacity that will use the given hasher for its internal hashmap
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Lasso};
    /// use std::collections::hash_map::RandomState;
    ///
    /// let lasso: Lasso<Cord, RandomState> = Lasso::with_capacity_and_hasher(10, RandomState::new());
    /// ```
    ///
    #[inline]
    pub fn with_capacity_and_hasher(capacity: usize, hash_builder: S) -> Self {
        Self {
            map: DashMap::with_capacity_and_hasher(capacity, hash_builder),
            strings: Mutex::new(Vec::with_capacity(capacity)),
        }
    }

    /// Intern a string, updating the value if it already exists, and return its key
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// let key = lasso.intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    #[inline]
    pub fn intern<T>(&self, val: T) -> K
    where
        T: Into<String>,
    {
        let string = Box::leak(val.into().into_boxed_str());

        let key = {
            let mut strings = self.strings.lock().unwrap();
            let key = K::from_usize(strings.len());
            strings.push(string);

            key
        };

        self.map.insert(string, key);

        key
    }

    /// Attempt to intern a string, updating the value if it already exists,
    /// returning its key if the key is able to be made and `None` if not.
    ///
    /// Can be used to determine if another interner needs to be created due to the namespace
    /// of the key being full.  
    /// Determines if the key can be made by using [`Key::try_from_usize`].
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// let key = lasso.try_intern("Strings of things with wings and dings").unwrap();
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    /// [`Key::try_from`]: crate::Key#try_from_usize
    #[inline]
    pub fn try_intern<T>(&self, val: T) -> Option<K>
    where
        T: Into<String>,
    {
        let string = Box::leak(val.into().into_boxed_str());

        let key = {
            let mut strings = self.strings.lock().unwrap();
            let key = K::try_from_usize(strings.len())?;
            strings.push(string);

            key
        };

        self.map.insert(string, key);

        Some(key)
    }

    /// Get the key for a string, interning it if it does not yet exist
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// // Interned the string
    /// let key = lasso.get_or_intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    ///
    /// // No string was interned, as it was already contained
    /// let key = lasso.get_or_intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    #[inline]
    pub fn get_or_intern<T>(&self, val: T) -> K
    where
        T: Into<String> + AsRef<str>,
    {
        if let Some(key) = self.get(val.as_ref()) {
            key
        } else {
            self.intern(val.into())
        }
    }

    /// Get the key for a string, interning it if it does not yet exist
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// // Interned the string
    /// let key = lasso.get_or_intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    ///
    /// // No string was interned, as it was already contained
    /// let key = lasso.get_or_intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    #[inline]
    pub fn try_get_or_intern<T>(&self, val: T) -> Option<K>
    where
        T: Into<String> + AsRef<str>,
    {
        if let Some(key) = self.get(val.as_ref()) {
            Some(key)
        } else {
            self.try_intern(val.into())
        }
    }

    /// Get the key value of a string, returning `None` if it doesn't exist
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Lasso};
    ///
    /// let lasso = Lasso::default();
    ///
    /// let key = lasso.intern("Strings of things with wings and dings");
    /// assert_eq!(Some(key), lasso.get("Strings of things with wings and dings"));
    ///
    /// assert_eq!(None, lasso.get("This string isn't interned"));
    /// ```
    ///
    #[inline]
    pub fn get<T>(&self, val: T) -> Option<K>
    where
        T: AsRef<str>,
    {
        self.map.get(val.as_ref()).map(|k| *k)
    }

    /// Resolves a string by its key
    ///
    /// # Safety
    ///
    /// Safety relies on the given [`Key`]'s adherence to symmetry, if the key gives bad indexes then it will cause UB,
    /// With that in mind, **never** use any key not directly provided by the interner
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Key, Lasso};
    ///
    /// let lasso = Lasso::default();
    ///
    /// let key = lasso.intern("Strings of things with wings and dings");
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    #[inline]
    pub fn resolve<'a>(&'a self, key: &K) -> &'a str {
        unsafe { self.strings.lock().unwrap().get_unchecked(key.into_usize()) }
    }

    /// Gets the number of interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// lasso.intern("Documentation often has little hidden bits in it");
    ///
    /// assert_eq!(lasso.len(), 1);
    /// ```
    ///
    #[inline]
    pub fn len(&self) -> usize {
        self.strings.lock().unwrap().len()
    }

    /// Returns `true` if there are no currently interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// assert!(lasso.is_empty());
    /// ```
    ///
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns the number of strings that can be interned without a reallocation
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Lasso};
    ///
    /// let lasso: Lasso<Cord> = Lasso::with_capacity(10);
    /// assert_eq!(lasso.capacity(), 10);
    /// ```
    ///
    #[inline]
    pub fn capacity(&self) -> usize {
        self.strings.lock().unwrap().capacity()
    }

    /// Consumes the current Lasso, returning a [`ReadOnlyLasso`] to allow contention-free access of the interner
    /// from multiple threads
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Appear weak when you are strong, and strong when you are weak.");
    ///
    /// let read_only_lasso = lasso.into_read_only();
    /// assert_eq!(
    ///     "Appear weak when you are strong, and strong when you are weak.",
    ///     read_only_lasso.resolve(&key),
    /// );
    /// ```
    ///
    /// [`ReadOnlyLasso`]: crate::ReadOnlyLasso
    #[inline]
    #[must_use]
    pub fn into_read_only(self) -> ReadOnlyLasso<K, S> {
        // Take the strings vec from the old lasso
        let strings = mem::replace(&mut *self.strings.lock().unwrap(), Vec::new());

        // Drain the DashMap by draining each of its buckets and creating a new hashmap to store their values
        let mut map: HashMap<&'static str, K, S> =
            HashMap::with_capacity_and_hasher(strings.len(), self.map.hasher().clone());
        for shard in self.map.shards() {
            // Extend the new map by the contents of the shard
            map.extend(shard.write().drain().map(|(k, v)| (k, v.into_inner())));
        }

        self.map.clear();

        ReadOnlyLasso { map, strings }
    }

    /// Consumes the current Lasso, returning a [`ResolverLasso`] to allow contention-free access of the interner
    /// from multiple threads with the lowest possible memory consumption
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Appear weak when you are strong, and strong when you are weak.");
    ///
    /// let resolver_lasso = lasso.into_resolver();
    /// assert_eq!(
    ///     "Appear weak when you are strong, and strong when you are weak.",
    ///     resolver_lasso.resolve(&key),
    /// );
    /// ```
    ///
    /// [`ResolverLasso`]: crate::ResolverLasso
    #[inline]
    #[must_use]
    pub fn into_resolver(self) -> ResolverLasso<K> {
        self.map.clear();

        let old_strings = &mut *self.strings.lock().unwrap();
        let mut strings = Vec::with_capacity(old_strings.len());

        for string in old_strings.drain(..) {
            strings.push(string);
        }

        ResolverLasso {
            strings,
            __key: PhantomData,
        }
    }
}

/// Creates a Lasso using [`Cord`] as its key and [`RandomState`] as its hasher
///
/// [`Cord`]: crate::Cord
/// [`RandomState`]: crate#cargo-features
impl Default for Lasso<Cord, RandomState> {
    fn default() -> Self {
        Self::new()
    }
}

impl<K, S> Clone for Lasso<K, S>
where
    K: Key,
    S: BuildHasher + Clone,
{
    fn clone(&self) -> Self {
        // Clone the old strings
        // Safety: THESE STRINGS CANNOT BE USED IN THE NEW LASSO
        // The strings in `old_strings` must be cloned and ownership given
        // to the new Lasso
        let old_strings = &*self.strings.lock().unwrap();

        // Create the new map/vec that will fill the new Lasso
        let map = DashMap::with_capacity_and_hasher(old_strings.len(), self.map.hasher().clone());
        let mut strings = Vec::with_capacity(old_strings.len());

        // For each string in the to-be-cloned Lasso, take ownership of each string and
        // insert it into the map and vec
        for (i, string) in old_strings.into_iter().enumerate() {
            // Clone the static string from `old_strings`, box and leak it
            let new: &'static str = Box::leak(string.to_string().into_boxed_str());

            // Store the new string, which we have ownership of, in the new map and vec
            strings.push(new);
            map.insert(new, K::from_usize(i));
        }

        Self {
            map,
            strings: Mutex::new(strings),
        }
    }
}

/// Deallocate the leaked strings interned by Lasso
impl<K, S> Drop for Lasso<K, S>
where
    K: Key,
    S: BuildHasher + Clone,
{
    fn drop(&mut self) {
        // Clear the map to remove all other references to the strings in self.strings
        self.map.clear();

        // Drain self.strings while deallocating the strings it holds
        for string in self.strings.lock().unwrap().drain(..) {
            // Safety: There must not be any other references to the strings being re-boxed, so the
            // map containing all other references is first drained, leaving the sole reference to
            // the strings vector, which allows the safe dropping of the string. This also relies on the
            // implemented functions for Lasso not giving out any references to the strings it holds
            // that live beyond itself. It also relies on the Clone implementation of Lasso to clone and
            // take ownership of all the interned strings as to not have a double free when one is dropped
            unsafe {
                let _ = Box::from_raw(string as *const str as *mut str);
            }
        }
    }
}

// Safety: Send and Sync are safe, as mutable access to `self.strings` is protected by a `Mutex`
unsafe impl<K: Key, S: BuildHasher + Clone> Send for Lasso<K, S> {}
unsafe impl<K: Key, S: BuildHasher + Clone> Sync for Lasso<K, S> {}

/// A read-only view of a [`Lasso`] that allows contention-free access to interned strings  
///
/// Made with the [`Lasso::into_read_only`] method, the key and hasher types default to the ones used by
/// the [`Lasso`] that created it
///
/// [`Lasso`]: crate::Lasso
/// [`Lasso::into_read_only`]: crate::Lasso#into_read_only
#[derive(Debug)]
pub struct ReadOnlyLasso<K: Key = Cord, S: BuildHasher + Clone = RandomState> {
    /// Map that allows `str` -> `key` resolution
    map: HashMap<&'static str, K, S>,
    /// Vec that allows `key` -> `str` resolution
    strings: Vec<&'static str>,
}

impl<K: Key, S: BuildHasher + Clone> ReadOnlyLasso<K, S> {
    /// Get the key value of a string, returning `None` if it doesn't exist
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Lasso};
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Strings of things with wings and dings");
    ///
    /// let lasso = lasso.into_read_only();
    /// assert_eq!(Some(key), lasso.get("Strings of things with wings and dings"));
    ///
    /// assert_eq!(None, lasso.get("This string isn't interned"));
    /// ```
    ///
    #[inline]
    pub fn get<T>(&self, val: T) -> Option<K>
    where
        T: AsRef<str>,
    {
        self.map.get(val.as_ref()).map(|k| *k)
    }

    /// Resolves a string by its key
    ///
    /// # Safety
    ///
    /// Safety relies on the given [`Key`]'s adherence to symmetry, if the key gives bad indexes then it will cause UB.  
    /// With that in mind, **never** use any key not directly provided by the interner
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Key, Lasso};
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Strings of things with wings and dings");
    ///
    /// let lasso = lasso.into_read_only();
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    #[inline]
    pub fn resolve<'a>(&'a self, key: &K) -> &'a str {
        unsafe { self.strings.get_unchecked(key.into_usize()) }
    }

    /// Gets the number of interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// lasso.intern("Documentation often has little hidden bits in it");
    ///
    /// let lasso = lasso.into_read_only();
    /// assert_eq!(lasso.len(), 1);
    /// ```
    ///
    #[inline]
    pub fn len(&self) -> usize {
        self.strings.len()
    }

    /// Returns `true` if there are no currently interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// let lasso = lasso.into_read_only();
    /// assert!(lasso.is_empty());
    /// ```
    ///
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Consumes the current ReadOnlyLasso, making it into a [`ResolverLasso`], allowing
    /// contention-free access from multiple threads with the lowest possible memory consumption
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Appear weak when you are strong, and strong when you are weak.");
    /// let read_only_lasso = lasso.into_read_only();
    ///
    /// let resolver_lasso = read_only_lasso.into_resolver();
    /// assert_eq!(
    ///     "Appear weak when you are strong, and strong when you are weak.",
    ///     resolver_lasso.resolve(&key),
    /// );
    /// ```
    ///
    /// [`ResolverLasso`]: crate::ResolverLasso
    #[inline]
    #[must_use]
    pub fn into_resolver(mut self) -> ResolverLasso<K> {
        let strings = mem::take(&mut self.strings);

        ResolverLasso {
            strings,
            __key: PhantomData,
        }
    }
}

impl<K, S> Clone for ReadOnlyLasso<K, S>
where
    K: Key,
    S: BuildHasher + Clone,
{
    fn clone(&self) -> Self {
        // Safety: The strings of the current ReadOnlyLasso **cannot** be used in the new lasso

        // Create the new map/vec that will fill the new Lasso
        let mut map =
            HashMap::with_capacity_and_hasher(self.strings.len(), self.map.hasher().clone());
        let mut strings = Vec::with_capacity(self.strings.len());

        // For each string in the to-be-cloned Lasso, take ownership of each string and
        // insert it into the map and vec
        for (i, string) in self.map.keys().enumerate() {
            // Clone the static string from `old_strings` onto the heap, box and leak it
            let new: &'static str = Box::leak(string.to_string().into_boxed_str());

            // Store the new string, which we have ownership of, in the new map and vec
            strings.push(new);
            map.insert(new, K::from_usize(i));
        }

        Self { map, strings }
    }
}

/// Deallocate the leaked strings interned by ReadOnlyLasso
impl<K: Key, S: BuildHasher + Clone> Drop for ReadOnlyLasso<K, S> {
    fn drop(&mut self) {
        // Clear the map to remove all other references to the strings in self.strings
        self.map.clear();

        // Drain self.strings while deallocating the strings it holds
        for string in self.strings.drain(..) {
            // Safety: There must not be any other references to the strings being re-boxed, so the
            // map containing all other references is first drained, leaving the sole reference to
            // the strings vector, which allows the safe dropping of the string. This also relies on the
            // implemented functions for ReadOnlyLasso not giving out any references to the strings it holds
            // that live beyond itself. It also relies on the Clone implementation of ReadOnlyLasso to clone and
            // take ownership of all the interned strings as to not have a double free when one is dropped
            unsafe {
                let _ = Box::from_raw(string as *const str as *mut str);
            }
        }
    }
}

// Safety: Send and Sync are safe, as mutable access is not possible
unsafe impl<K: Key, S: BuildHasher + Clone> Send for ReadOnlyLasso<K, S> {}
unsafe impl<K: Key, S: BuildHasher + Clone> Sync for ReadOnlyLasso<K, S> {}

/// A read-only view of a [`Lasso`] that allows contention-free access to interned strings, but only for `key` -> `str`
/// resolution
///
/// Made with the [`Lasso::into_resolver`] or [`ReadOnlyLasso::into_resolver`] methods, the key type defaults to the ones used by the [`Lasso`] that created it
///
/// [`Lasso`]: crate::Lasso
/// [`Lasso::into_resolver`]: crate::Lasso#into_resolver
/// [`ReadOnlyLasso::into_resolver`]: crate::ReadOnlyLasso#into_resolver
#[derive(Debug)]
pub struct ResolverLasso<K: Key = Cord> {
    /// Vec that allows `key` -> `str` resolution
    strings: Vec<&'static str>,
    __key: PhantomData<K>,
}

impl<K: Key> ResolverLasso<K> {
    /// Resolves a string by its key
    ///
    /// # Safety
    ///
    /// Safety relies on the given [`Key`]'s adherence to symmetry, if the key gives bad indexes then it will cause UB,
    /// With that in mind, **never** use any key not directly provided by the interner
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::{Cord, Key, Lasso};
    ///
    /// let lasso = Lasso::default();
    /// let key = lasso.intern("Strings of things with wings and dings");
    ///
    /// let lasso = lasso.into_resolver();
    /// assert_eq!("Strings of things with wings and dings", lasso.resolve(&key));
    /// ```
    ///
    /// [`Key`]: crate::Key
    #[inline]
    pub fn resolve<'a>(&'a self, key: &K) -> &'a str {
        unsafe { self.strings.get_unchecked(key.into_usize()) }
    }

    /// Gets the number of interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    /// lasso.intern("Documentation often has little hidden bits in it");
    ///
    /// let lasso = lasso.into_resolver();
    /// assert_eq!(lasso.len(), 1);
    /// ```
    ///
    #[inline]
    pub fn len(&self) -> usize {
        self.strings.len()
    }

    /// Returns `true` if there are no currently interned strings
    ///
    /// # Example
    ///
    /// ```rust
    /// use lasso::Lasso;
    ///
    /// let lasso = Lasso::default();
    ///
    /// let lasso = lasso.into_resolver();
    /// assert!(lasso.is_empty());
    /// ```
    ///
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }
}

impl<K: Key> Clone for ResolverLasso<K> {
    fn clone(&self) -> Self {
        // Safety: The strings of the current Resolver **cannot** be used in the new one

        // Create the new vec that will fill the new Resolver
        let mut strings = Vec::with_capacity(self.strings.len());

        // For each string in the to-be-cloned Resolver, take ownership of each string and
        // insert it into the new vec
        for string in self.strings.iter() {
            // Clone the static string from `old_strings` onto the heap, box and leak it
            let new: &'static str = Box::leak(string.to_string().into_boxed_str());

            // Store the new string, which we have ownership of, in the new vec
            strings.push(new);
        }

        Self {
            strings,
            __key: PhantomData,
        }
    }
}

/// Deallocate the leaked strings interned by ResolverLasso
impl<K: Key> Drop for ResolverLasso<K> {
    fn drop(&mut self) {
        // Drain self.strings while deallocating the strings it holds
        for string in self.strings.drain(..) {
            // Safety: There must not be any other references to the strings being re-boxed, which lies in the
            // the strings vector, which in turn allows the safe dropping of the string. This also relies on the
            // implemented functions for ResolverLasso not giving out any references to the strings it holds
            // that live beyond itself. It also relies on the Clone implementation of ResolverLasso to clone and
            // take ownership of all the interned strings as to not have a double free when one is dropped
            unsafe {
                let _ = Box::from_raw(string as *const str as *mut str);
            }
        }
    }
}

// Safety: Send and Sync are safe, as mutable access is not possible
unsafe impl<K: Key> Send for ResolverLasso<K> {}
unsafe impl<K: Key> Sync for ResolverLasso<K> {}

/// Types implementing this trait can be used as keys for [`Lasso`]
///
/// # Safety
///
/// into/from must be perfectly symmetrical, any key that goes on must be perfectly reproduced with the other
///
/// [`Lasso`]: crate::Lasso
/// [`ReadOnlyLasso`]: crate::ReadOnlyLasso
pub unsafe trait Key: Copy + Eq {
    /// Returns the `usize` that represents the current key
    fn into_usize(self) -> usize;
    /// Creates a key from a `usize`
    fn from_usize(int: usize) -> Self;
    /// Attempts to create a key from a `usize`, returning `None` if it fails
    fn try_from_usize(int: usize) -> Option<Self>;
}

/// The default key for [`Lasso`].  
///
/// Internally is a `NonZeroUsize` to allow for space optimizations when stored inside of an [`Option`]
///
/// [`Lasso`]: crate::Lasso
/// [`ReadOnlyLasso`]: crate::ReadOnlyLasso
/// [`Option`]: https://doc.rust-lang.org/std/option/enum.Option.html   
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
pub struct Cord(NonZeroUsize);

unsafe impl Key for Cord {
    #[inline]
    fn into_usize(self) -> usize {
        self.0.get() - 1
    }

    /// Panics if `int` is greater than `usize::MAX - 1`
    #[inline]
    fn from_usize(int: usize) -> Self {
        assert!(
            int < usize::max_value(),
            "Can only use values up to `usize::MAX - 1` for Cord"
        );

        Self(NonZeroUsize::new(int + 1).unwrap_or_else(|| {
            unreachable!("The value is already asserted to be less than usize::MAX")
        }))
    }

    /// Returns `None` if `int` is greater than `usize::MAX - 1`
    #[inline]
    fn try_from_usize(int: usize) -> Option<Self> {
        if int < usize::max_value() {
            Some(Self(NonZeroUsize::new(int + 1).unwrap_or_else(|| {
                unreachable!("The value is already asserted to be less than usize::MAX")
            })))
        } else {
            None
        }
    }
}

/// A small Key for [`Lasso`]
///
/// Internally is a `NonZeroU32` to allow for space optimizations when stored inside of an [`Option`]
///
/// [`Lasso`]: crate::Lasso
/// [`ReadOnlyLasso`]: crate::ReadOnlyLasso
/// [`Option`]: https://doc.rust-lang.org/std/option/enum.Option.html   
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
pub struct SmallCord(NonZeroU32);

unsafe impl Key for SmallCord {
    #[inline]
    fn into_usize(self) -> usize {
        self.0.get() as usize - 1
    }

    /// Panics if `int` is greater than `usize::MAX - 1`
    #[inline]
    fn from_usize(int: usize) -> Self {
        assert!(
            int < u32::max_value() as usize,
            "Can only use values up to `u32::MAX - 1` for SmallCord"
        );

        Self(NonZeroU32::new(int as u32 + 1).unwrap_or_else(|| {
            unreachable!("The value is already asserted to be less than u32::MAX")
        }))
    }

    /// Returns `None` if `int` is greater than `usize::MAX - 1`
    #[inline]
    fn try_from_usize(int: usize) -> Option<Self> {
        if int < u32::max_value() as usize {
            Some(Self(NonZeroU32::new(int as u32 + 1).unwrap_or_else(|| {
                unreachable!("The value is already asserted to be less than u32::MAX")
            })))
        } else {
            None
        }
    }
}

macro_rules! impl_key {
    (ints: $($ty:ty),*) => {
        $(
            unsafe impl Key for $ty {
                #[inline]
                fn into_usize(self) -> usize {
                    self as usize
                }

                #[inline]
                fn from_usize(int: usize) -> Self {
                    assert!(
                        int <= <$ty>::max_value() as usize,
                        concat!("Can only use values up to `", stringify!($ty), "::MAX`")
                    );

                    int as $ty
                }

                #[inline]
                fn try_from_usize(int: usize) -> Option<Self> {
                    if int <= <$ty>::max_value() as usize {
                        Some(int as $ty)
                    } else {
                        None
                    }
                }
            }
        )*
    };

    (nonzero: $(($ty:ty, $int:ty)),*) => {
        $(
            unsafe impl Key for $ty {
                #[inline]
                fn into_usize(self) -> usize {
                    self.get() as usize - 1
                }

                #[inline]
                fn from_usize(int: usize) -> Self {
                    assert!(
                        int < <$int>::max_value() as usize,
                        concat!("Can only use values up to `", stringify!($int), "::MAX - 1`"),
                    );

                    <$ty>::new(int as $int + 1).unwrap_or_else(|| {
                        unreachable!(concat!("The value is already asserted to be less than ", stringify!($int), "::MAX"))
                    })
                }

                #[inline]
                fn try_from_usize(int: usize) -> Option<Self> {
                    if int < <$int>::max_value() as usize {
                        Some(<$ty>::new(int as $int + 1).unwrap_or_else(|| {
                            unreachable!(concat!("The value is already asserted to be less than ", stringify!($int), "::MAX"))
                        }))
                    } else {
                        None
                    }
                }
            }
        )*

    };
}

// Implement Key for unsigned integer types, nonzero and normal, up to u64
impl_key!(ints: u8, u16, u32, u64, usize);
impl_key!(
    nonzero: (NonZeroU8, u8),
    (NonZeroU16, u16),
    (NonZeroU32, u32),
    (NonZeroU64, u64),
    (NonZeroUsize, usize)
);

#[cfg(test)]
mod tests {
    use super::*;
    use ahash::RandomState as AhashRandomState;
    use std::collections::hash_map::RandomState as StdRandomState;
    #[cfg(not(miri))]
    use std::{sync::Arc, thread};

    #[test]
    fn lasso_new() {
        let _: Lasso<Cord> = Lasso::new();
    }

    #[test]
    fn lasso_with_capacity() {
        let _: Lasso<Cord> = Lasso::with_capacity(10);
    }

    #[test]
    fn lasso_with_hasher() {
        let std_lasso: Lasso<Cord, StdRandomState> = Lasso::with_hasher(StdRandomState::new());
        let key = std_lasso.intern("Test");
        assert_eq!("Test", std_lasso.resolve(&key));

        let ahash_lasso: Lasso<Cord, AhashRandomState> =
            Lasso::with_hasher(AhashRandomState::new());
        let key = ahash_lasso.intern("Test");
        assert_eq!("Test", ahash_lasso.resolve(&key));
    }

    #[test]
    fn lasso_with_capacity_and_hasher() {
        let std_lasso: Lasso<Cord, StdRandomState> =
            Lasso::with_capacity_and_hasher(10, StdRandomState::new());

        let key = std_lasso.intern("Test");
        assert_eq!("Test", std_lasso.resolve(&key));

        let ahash_lasso: Lasso<Cord, AhashRandomState> =
            Lasso::with_capacity_and_hasher(10, AhashRandomState::new());

        let key = ahash_lasso.intern("Test");
        assert_eq!("Test", ahash_lasso.resolve(&key));
    }

    #[test]
    fn lasso_intern() {
        let lasso = Lasso::default();
        lasso.intern("A");
        lasso.intern("A");
        lasso.intern("B");
        lasso.intern("B");
        lasso.intern("C");
        lasso.intern("C");
    }

    #[test]
    #[cfg(not(miri))]
    fn lasso_intern_threaded() {
        let lasso = Arc::new(Lasso::default());

        let moved = Arc::clone(&lasso);
        thread::spawn(move || {
            moved.intern("A");
            moved.intern("A");
            moved.intern("B");
            moved.intern("B");
            moved.intern("C");
            moved.intern("C");
        });

        lasso.intern("A");
        lasso.intern("A");
        lasso.intern("B");
        lasso.intern("B");
        lasso.intern("C");
        lasso.intern("C");
    }

    #[test]
    fn lasso_get_or_intern() {
        let lasso = Lasso::default();
        lasso.get_or_intern("A");
        lasso.get_or_intern("A");
        lasso.get_or_intern("B");
        lasso.get_or_intern("B");
        lasso.get_or_intern("C");
        lasso.get_or_intern("C");
    }

    #[test]
    #[cfg(not(miri))]
    fn lasso_get_or_intern_threaded() {
        let lasso = Arc::new(Lasso::default());

        let moved = Arc::clone(&lasso);
        thread::spawn(move || {
            moved.get_or_intern("A");
            moved.get_or_intern("A");
            moved.get_or_intern("B");
            moved.get_or_intern("B");
            moved.get_or_intern("C");
            moved.get_or_intern("C");
        });

        lasso.get_or_intern("A");
        lasso.get_or_intern("A");
        lasso.get_or_intern("B");
        lasso.get_or_intern("B");
        lasso.get_or_intern("C");
        lasso.get_or_intern("C");
    }

    #[test]
    fn lasso_get() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        assert_eq!(Some(key), lasso.get("A"));
    }

    #[test]
    #[cfg(not(miri))]
    fn lasso_get_threaded() {
        let lasso = Arc::new(Lasso::default());
        let key = lasso.intern("A");

        let moved = Arc::clone(&lasso);
        thread::spawn(move || {
            assert_eq!(Some(key), moved.get("A"));
        });

        assert_eq!(Some(key), lasso.get("A"));
    }

    #[test]
    fn lasso_resolve() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        assert_eq!("A", lasso.resolve(&key));
    }

    #[test]
    #[cfg(not(miri))]
    fn lasso_resolve_threaded() {
        let lasso = Arc::new(Lasso::default());
        let key = lasso.intern("A");

        let moved = Arc::clone(&lasso);
        thread::spawn(move || {
            assert_eq!("A", moved.resolve(&key));
        });

        assert_eq!("A", lasso.resolve(&key));
    }

    #[test]
    fn lasso_len() {
        let lasso = Lasso::default();
        lasso.intern("A");
        lasso.intern("B");
        lasso.intern("C");

        assert_eq!(lasso.len(), 3);
    }

    #[test]
    fn lasso_empty() {
        let lasso = Lasso::default();

        assert!(lasso.is_empty());
    }

    #[test]
    fn clone_lasso() {
        let lasso = Lasso::default();
        let key = lasso.intern("Test");

        assert_eq!("Test", lasso.resolve(&key));

        let cloned = lasso.clone();
        assert_eq!("Test", cloned.resolve(&key));

        drop(lasso);

        assert_eq!("Test", cloned.resolve(&key));
    }

    #[test]
    fn drop_lasso() {
        let _ = Lasso::default();
    }

    #[test]
    #[cfg(not(miri))]
    fn drop_lasso_threaded() {
        let lasso = Arc::new(Lasso::default());

        let moved = Arc::clone(&lasso);
        thread::spawn(move || {
            let _ = moved;
        });
    }

    #[test]
    fn read_only_get() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let read_only = lasso.into_read_only();
        assert_eq!(Some(key), read_only.get("A"));
    }

    #[test]
    #[cfg(not(miri))]
    fn read_only_get_threaded() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let read_only = Arc::new(lasso.into_read_only());

        let moved = Arc::clone(&read_only);
        thread::spawn(move || {
            assert_eq!(Some(key), moved.get("A"));
        });

        assert_eq!(Some(key), read_only.get("A"));
    }

    #[test]
    fn read_only_resolve() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let read_only = lasso.into_read_only();
        assert_eq!("A", read_only.resolve(&key));
    }

    #[test]
    #[cfg(not(miri))]
    fn read_only_resolve_threaded() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let read_only = Arc::new(lasso.into_read_only());

        let moved = Arc::clone(&read_only);
        thread::spawn(move || {
            assert_eq!("A", moved.resolve(&key));
        });

        assert_eq!("A", read_only.resolve(&key));
    }

    #[test]
    fn read_only_len() {
        let lasso = Lasso::default();
        lasso.intern("A");
        lasso.intern("B");
        lasso.intern("C");

        let read_only = lasso.into_read_only();
        assert_eq!(read_only.len(), 3);
    }

    #[test]
    fn read_only_empty() {
        let lasso = Lasso::default();
        let read_only = lasso.into_read_only();

        assert!(read_only.is_empty());
    }

    #[test]
    fn clone_read_only() {
        let lasso = Lasso::default();
        let key = lasso.intern("Test");

        let read_only_lasso = lasso.into_read_only();
        assert_eq!("Test", read_only_lasso.resolve(&key));

        let cloned = read_only_lasso.clone();
        assert_eq!("Test", cloned.resolve(&key));

        drop(read_only_lasso);

        assert_eq!("Test", cloned.resolve(&key));
    }

    #[test]
    fn drop_read_only() {
        let lasso = Lasso::default();
        let _ = lasso.into_read_only();
    }

    #[test]
    #[cfg(not(miri))]
    fn drop_read_only_threaded() {
        let lasso = Lasso::default();
        let read_only = Arc::new(lasso.into_read_only());

        let moved = Arc::clone(&read_only);
        thread::spawn(move || {
            let _ = moved;
        });
    }

    #[test]
    fn read_only_into_resolver() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let resolver = lasso.into_read_only().into_resolver();
        assert_eq!("A", resolver.resolve(&key));
    }

    #[test]
    fn resolver_resolve() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let resolver = lasso.into_resolver();
        assert_eq!("A", resolver.resolve(&key));
    }

    #[test]
    #[cfg(not(miri))]
    fn resolver_resolve_threaded() {
        let lasso = Lasso::default();
        let key = lasso.intern("A");

        let resolver = Arc::new(lasso.into_resolver());

        let moved = Arc::clone(&resolver);
        thread::spawn(move || {
            assert_eq!("A", moved.resolve(&key));
        });

        assert_eq!("A", resolver.resolve(&key));
    }

    #[test]
    fn resolver_len() {
        let lasso = Lasso::default();
        lasso.intern("A");
        lasso.intern("B");
        lasso.intern("C");

        let resolver = lasso.into_resolver();
        assert_eq!(resolver.len(), 3);
    }

    #[test]
    fn resolver_empty() {
        let lasso = Lasso::default();
        let read_only = lasso.into_resolver();

        assert!(read_only.is_empty());
    }

    #[test]
    fn clone_resolver() {
        let lasso = Lasso::default();
        let key = lasso.intern("Test");

        let resolver_lasso = lasso.into_resolver();
        assert_eq!("Test", resolver_lasso.resolve(&key));

        let cloned = resolver_lasso.clone();
        assert_eq!("Test", cloned.resolve(&key));

        drop(resolver_lasso);

        assert_eq!("Test", cloned.resolve(&key));
    }

    #[test]
    fn drop_resolver() {
        let lasso = Lasso::default();
        let _ = lasso.into_resolver();
    }

    #[test]
    #[cfg(not(miri))]
    fn drop_resolver_threaded() {
        let lasso = Lasso::default();
        let resolver = Arc::new(lasso.into_resolver());

        let moved = Arc::clone(&resolver);
        thread::spawn(move || {
            let _ = moved;
        });
    }

    #[test]
    fn cord() {
        let zero = Cord::from_usize(0);
        let max = Cord::from_usize(usize::max_value() - 1);

        assert_eq!(zero.into_usize(), 0);
        assert_eq!(max.into_usize(), usize::max_value() - 1);
    }

    #[test]
    fn cord_max_returns_none() {
        assert_eq!(None, Cord::try_from_usize(usize::max_value()));
    }

    #[test]
    #[should_panic]
    #[cfg(not(miri))]
    fn cord_max_panics() {
        Cord::from_usize(usize::max_value());
    }

    #[test]
    fn small_cord() {
        let zero = SmallCord::from_usize(0);
        let max = SmallCord::from_usize(u32::max_value() as usize - 1);

        assert_eq!(zero.into_usize(), 0);
        assert_eq!(max.into_usize(), u32::max_value() as usize - 1);
    }

    #[test]
    fn small_cord_returns_none() {
        assert_eq!(None, SmallCord::try_from_usize(u32::max_value() as usize));
    }

    #[test]
    #[should_panic]
    #[cfg(not(miri))]
    fn small_cord_panics() {
        SmallCord::from_usize(u32::max_value() as usize);
    }
}