string-interner 0.6.0

A string interning data structure that was designed for minimal memory-overhead and fast access to the underlying interned string contents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[![Build Status](https://travis-ci.org/Robbepop/string-interner.svg?branch=master)](https://travis-ci.org/Robbepop/string-interner)
[![Build Status](https://ci.appveyor.com/api/projects/status/skcw9aylqqng1df0?svg=true)](https://ci.appveyor.com/project/Robbepop/string-interner/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/Robbepop/string-interner/badge.svg?branch=master)](https://coveralls.io/github/Robbepop/string-interner?branch=master)
[![Crates.io Version](https://img.shields.io/crates/v/string-interner.svg)](https://crates.io/crates/string-interner)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

String-Interner
===============

A string interning data structure that was designed for minimal memory-overhead
and fast access to the underlying interned string contents.

It uses a similar API as the string interner of the Rust compiler.

Take a look into the [documentation](https://docs.rs/string-interner) to get to know how to use it!

Link to [crates.io](https://crates.io/crates/string-interner).