nanokit 0.2.1

A collection of tiny, reusable utility methods that reduce code size and improve performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]
#[cfg(feature = "std")]
extern crate std;

extern crate alloc;

pub mod count_bits;
#[cfg(feature = "c-exports")]
pub mod exports;
pub mod string_concat;
pub mod string_concat_unsafe;