[][src]Module tinyset::set64

A set that is compact in size.

Structs

IntoIter

An iterator.

Set64

A set type that can store any type that fits in a u64. This set type is very space-efficient in storing small or closely spaced integers, while not being bad at storing large integers.

Traits

Fits64

This describes a type which can be stored in 64 bits without loss. It is defined for all signed and unsigned integer types, as well as char. In each case, we store sets consisting exclusively of "small" integers efficiently.

Functions

test_fits64

A utility function that is useful for testing your Fits64 implentation.