resize_slice2 0.2.0

Resize a slice given a larger slice in safe Rust
Documentation
[![license: MIT](https://img.shields.io/crates/l/resize_slice2)](https://github.com/benthillerkus/resize_slice/blob/main/LICENSE)
[![build status docs](https://img.shields.io/docsrs/resize_slice2)](https://docs.rs/resize_slice2)
[![crate version](https://img.shields.io/crates/v/resize_slice2)](https://crates.io/crates/resize_slice2)

# resize slice (2)


Enlarge and shrink slices (given a larger slice) in safe Rust.

This is done by expressing the new slice as a slice of the source slice -- this way you can also extend the lifetime to the sources lifetime.

# Example


```rust
use resize_slice2::ResizeSlice;
let source = &["a", "b", "c", "d", "e", "f"];
let slice = &source[1..4];
assert_eq!(slice, &["b", "c", "d"]);
let resized = slice.try_resize(source, 0..1).unwrap();
assert_eq!(resized, &["b", "c", "d", "e"]);
```

So a range of `1..-1` would move the start one to the right and move the end one to the left.
```blank
source: |------------------------|
slice:             |-------|
result:              |---|
```
A range of `1..` would move the start one to the right and fully expand the end.
```blank
source: |------------------------|
slice:             |-------|
result:              |-----------|
```
A range of `0..0` would return the same slice.
```blank
source: |------------------------|
slice:            |-------|
result:           |-------|
```