nz

Crates.ionz
lib.rsnz
version0.4.1
sourcesrc
created_at2023-07-29 01:16:38.766786
updated_at2024-07-16 17:55:38.933015
descriptionCollection of 100% safe macros for creating non-zero integers more easily.
homepage
repositoryhttps://github.com/noelhorvath/nz
max_upload_size
id929018
size36,726
Noel Horváth (noelhorvath)

documentation

README

nz

github crates.io docs.rs rust-ci msrv unsafety license

Table of contents

Description

The nz crate provides a collection of macros that simplify the creation of the NonZero type. With these macros, you can easily generate constants of the generic type using literals, constant values or expressions at compiletime.

Changelog

All changes to nz crate are documented in CHANGELOG.md.

Features

  • No unsafe code
  • No dependencies
  • no_std compatible
  • Supports every type that implements ZeroablePrimitive
  • Compile-time evaluation

Macros

Type Macro
NonZero<i8> nz::i8!
NonZero<i16> nz::i16!
NonZero<i32> nz::i32!
NonZero<i64> nz::i64!
NonZero<i128> nz::i128!
NonZero<isize> nz::isize!
NonZero<u8> nz::u8!
NonZero<u16> nz::u16!
NonZero<u32> nz::u32!
NonZero<u64> nz::u64!
NonZero<u128> nz::u128!
NonZero<usize> nz::usize!

Usage

use std::num::NonZero;

// A `NonZero<T>` type can be constructed from different types of
// arguments with the matching `nz` macro.
// Such argument can be an integer literal,
const NZ_MIN: NonZero<u8> = nz::u8!(1);
let nz_two = nz::u8!(2);
// a constant value,
const NZ_MAX: NonZero<u8> = nz::u8!(u8::MAX);
const SIX: u8 = 6;
let six = nz::u8!(SIX);
// or even a constant expression.
const RES: NonZero<u8> = nz::u8!({ 3 + 7 } - NZ_MIN.get());
let res = nz::u8!((NZ_MIN.get() & NZ_MAX.get()) + 7);
let five = nz::u8!({ const FIVE: u8 = 5; FIVE });
// However, a non-constant expression results in a compile-time error.
// const __ERR: NonZero<u8> = nz::u8!({ 3 + 7 } - nz_two.get());

License

This library is distributed under the terms of either of the following licenses at your option:

Commit count: 91

cargo fmt