indextreemap 0.1.25

A BTreeMap implementation that allows for key and or positional insertion and retreival.
Documentation
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
# indextreemap
IndexTreeMap is an ordered tree map based on the rust standard library BTreeMap,
that allows for items to be accessed by key, value, or position in the tree.

This library is meant to serve niche use cases where the deterministic
ordering of key-value items is required, with the ability to index items
by position or key in logarithmic time.

When compared to the standard library BTreeMap (std::collections::BTreeMap),
for operations that require changes in memory allocation (insert, remove, etc...)
the IndexTreeMap is slower. However, when referencing data already allocated in 
memory, the IndexTreeMap is equivalent or faster.
<!-- 
---

## Methods

### IndexTreeMap::new()
Makes a new, empty IndexTreeMap.

Does not allocate anything on its own.
**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut map = IndexTreeMap::new();
map.insert(1, "a".to_string());
```    

### IndexTreeMap::insert()
Insert a key-value pair into the map.  
**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert!(!tree.is_empty());
```

### IndexTreeMap::clear()

Clears the map, removing all elements.
Does not allocate anything on its own.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut map = IndexTreeMap::new();
map.insert(1, "a".to_string());
map.clear();
assert!(map.is_empty());
```

### IndexTreeMap::len()

Returns the size of the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut map = IndexTreeMap::new();
map.insert(1, "a".to_string());
assert_eq!(map.len(), 1);
```

### IndexTreeMap::is_empty()

Returns true if the map contains no elements.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut map = IndexTreeMap::new();
assert!(map.is_empty());
map.insert(1, "a".to_string());
assert!(!map.is_empty());
```

### IndexTreeMap::contains_key()

Returns true if the map contains a value for the specified key.
The key may be any borrowed form of the map’s key type, but the
ordering on the borrowed form must match the ordering on the key type.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.contains_key(&1), true);
assert_eq!(tree.contains_key(&2), false);
```

### IndexTreeMap::contains_index()

Returns true if the map contains an item in the index position.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.contains_index(0), true);
assert_eq!(tree.contains_index(1), false);
```

### IndexTreeMap::get()

Returns a reference to the value corresponding to the key.
The key may be any borrowed form of the map’s key type, but the
ordering on the borrowed form must match the ordering on the key type.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get(&1), Some(&"a".to_string()));
assert_eq!(tree.get(&2), None);
```

### IndexTreeMap::get_key_value()

Returns the key-value pair corresponding to the supplied key.
The supplied key may be any borrowed form of the map’s key type, but
the ordering on the borrowed form must match the ordering on the key type.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_key_value(&1), (Some(&1), Some(&"a".to_string())));
assert_eq!(tree.get_key_value(&2), (None, None));
```

### IndexTreeMap::get_from_index()

Returns a reference to the value corresponding to the index.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_from_index(0), Some(&"a".to_string()));
assert_eq!(tree.get_from_index(1), None);
```

### IndexTreeMap::get_key_from_index()

Returns a reference to the key corresponding to the index.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_key_from_index(0), Some(&1));
assert_eq!(tree.get_key_from_index(1), None);
```

### IndexTreeMap::get_key_value_from_index()

Returns a reference to the key-value pair corresponding to the index.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_key_value_from_index(0), (Some(&1), Some(&"a".to_string())));
assert_eq!(tree.get_key_value_from_index(1), (None, None));
```

### IndexTreeMap::get_first_key()

Returns a reference to the first key in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_first_key(), Some(&1));
```

### IndexTreeMap::get_first_value()

Returns a reference to the first value in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_first_value(), Some(&"a".to_string()));
```

### IndexTreeMap::get_first_key_value()

Returns a reference to the first key-value pair in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.get_first_key_value(), (Some(&1),Some(&"a".to_string())));
```

### IndexTreeMap::get_last_key()

Returns a reference to the last key in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;
let mut tree = IndexTreeMap::new();

tree.insert(1, "a".to_string());
tree.insert(2, "b".to_string());
assert_eq!(tree.get_last_key(), Some(&2));
```

### IndexTreeMap::get_last_value()

Returns a reference to the first value in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
tree.insert(2, "b".to_string());
assert_eq!(tree.get_last_value(), Some(&"b".to_string()));
```

### IndexTreeMap::get_last_key_value()

Returns a reference to the last key-value pair in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
tree.insert(2, "b".to_string());
assert_eq!(tree.get_last_key_value(), (Some(&2),Some(&"b".to_string())));
```

### IndexTreeMap::iter()

Gets an iterator over the entries of the map, sorted by key.

**Example**
Basic usage:
```rust
use std::collections::BTreeMap;

let mut map = BTreeMap::new();
map.insert(3, "c");
map.insert(2, "b");
map.insert(1, "a");

let (first_key, first_value) = map.iter().next().unwrap();
assert_eq!((*first_key, *first_value), (1, "a"));
```

### IndexTreeMap::into_iter() ***to be implemented***

Creates a consuming iterator visiting all the keys, in sorted order. The map cannot be used after calling this.

**Example**
Basic usage:
```rust
use std::collections::BTreeMap;

let mut map = BTreeMap::new();
map.insert(2, "b");
map.insert(1, "a");

let items: Vec<(i32, &str)> = map.into_iter().collect();
assert_eq!(items, [(1, "a"), (2, "b")]);
```

### IndexTreeMap::keys()

Gets an iterator over the keys of the map, in sorted order.

**Example**
Basic usage:
```rust
use std::collections::IndexTreeMap;

let mut map = IndexTreeMap::new();
map.insert(3, "c");
map.insert(2, "b");
map.insert(1, "a");

let first_key = map.keys().next().unwrap();
assert_eq!(first_key, Some(&1));
```

### IndexTreeMap::values()

Gets an iterator over the values of the map, in sorted order.

**Example**
Basic usage:
```rust
use std::collections::IndexTreeMap;

let mut map = IndexTreeMap::new();
map.insert(3, "c");
map.insert(2, "b");
map.insert(1, "a");

let first_value = map.values().next().unwrap();
assert_eq!(first_value, Some(&"a"));
```



### IndexTreeMap::remove()

Removes an item from the map from its corresponding key, returning the key-value pair that was previously in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.remove(&1), (Some(1), Some("a".to_string())));
assert_eq!(tree.remove(&2), (None, None));
```

### IndexTreeMap::remove_from_index() ***to be implemented***

Removes an item from the map from its corresponding index, returning the key-value pair that was previously in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;
let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
assert_eq!(tree.remove_from_index(0), (Some(1), Some("a".to_string())));
assert_eq!(tree.remove_from_index(1), (None, None));
```

### IndexTreeMap::replace()

Replaces an item from the map from its corresponding key, returning the key-value pair that was previously in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
tree.replace(1, "b".to_string());
assert_eq!(tree.get(&1), Some(&"b".to_string()));
```

### IndexTreeMap::replace_index()

Replaces an item from the map from its corresponding index, returning the key-value pair that was previously in the map.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;

let mut tree = IndexTreeMap::new();
tree.insert(1, "a".to_string());
tree.replace_index(0, "b".to_string());
assert_eq!(tree.get(&1), Some(&"b".to_string()));
```

### IndexTreeMap::split_off()

Split the map into two at the given key. Returns everything after the given key, including the key.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;
let mut a = IndexTreeMap::new();
a.insert(1, "a");
a.insert(2, "b");
a.insert(3, "c");
a.insert(17, "d");
a.insert(41, "e");

let b = a.split_off(&3);

assert_eq!(a.len(), 2);
assert_eq!(b.len(), 3);
assert_eq!(a.get(&1), Some(&"a"));
assert_eq!(a.get(&2), Some(&"b"));
assert_eq!(a.get(&3), None);

assert_eq!(b.get(&3), Some(&"c"));
assert_eq!(b.get(&17), Some(&"d"));
assert_eq!(b.get(&41), Some(&"e"));
```

### IndexTreeMap::split_off_from_index()

Splits the map into two at the given key. Returns everything after the given key, including the key.

**Example**
Basic usage:
```rust
use indextreemap::IndexTreeMap;
let mut a = IndexTreeMap::new();
a.insert(1, "a");
a.insert(2, "b");
a.insert(3, "c");
a.insert(17, "d");
a.insert(41, "e");

let b = a.split_off_from_index(2);

assert_eq!(a.len(), 2);
assert_eq!(b.len(), 3);
assert_eq!(a.get(&1), Some(&"a"));
assert_eq!(a.get(&2), Some(&"b"));
assert_eq!(a.get(&3), None);

assert_eq!(b.get(&3), Some(&"c"));
assert_eq!(b.get(&17), Some(&"d"));
assert_eq!(b.get(&41), Some(&"e"));
``` -->