toolbox 0.1.7

Simple tools for daily use
Documentation
# toolbox::{vfs, alg}


[![Crates.io](https://img.shields.io/crates/l/toolbox.svg)](https://github.com/torkve/shotwellvfs/blob/master/LICENSE)

<small>Tested on linux, windows.</small>

### vfs

Virtual file system for convenient work with relative paths.

### alg

*Search algorithms:*
<table>
<tr><th>name</th><th>complexity</th></tr>
<tr><td>max</td> <td>O(n)</td></tr>
<tr><td>min</td> <td>O(n)</td></tr>
<tr><td>binary</td> <td>O(log<sub><small>2</small></sub>n)</td></tr>
</table>

*Sort algorithms:*
<table>
<tr><th>name</th><th>complexity</th></tr>
<tr><td>selection</td> <td>O(n<sup><small>2</small></sup>)</td></tr>
<tr><td>quick</td> <td>O(n log<sub><small>2</small></sub>n)</td></tr>
</table>