Lines Matching refs:j
1490 for j in 1..i + 1 { in test_lots_of_insertions()
1491 let r = m.get(&j); in test_lots_of_insertions()
1492 assert_eq!(r, Some(&j)); in test_lots_of_insertions()
1495 for j in i + 1..101 { in test_lots_of_insertions()
1496 let r = m.get(&j); in test_lots_of_insertions()
1509 for j in 1..i + 1 { in test_lots_of_insertions()
1510 assert!(!m.contains_key(&j)); in test_lots_of_insertions()
1513 for j in i + 1..101 { in test_lots_of_insertions()
1514 assert!(m.contains_key(&j)); in test_lots_of_insertions()
1530 for j in i..101 { in test_lots_of_insertions()
1531 assert!(!m.contains_key(&j)); in test_lots_of_insertions()
1534 for j in 1..i { in test_lots_of_insertions()
1535 assert!(m.contains_key(&j)); in test_lots_of_insertions()