[][src]Trait typenum::marker_traits::Integer

pub trait Integer {
    const I8: i8;
    const I16: i16;
    const I32: i32;
    const I64: i64;
    const ISIZE: isize;

    fn to_i8() -> i8;
fn to_i16() -> i16;
fn to_i32() -> i32;
fn to_i64() -> i64;
fn to_isize() -> isize; }

The marker trait for compile time signed integers.

This trait should not be implemented for anything outside this crate.

Example

use typenum::{P3, Integer};

assert_eq!(P3::to_i32(), 3);
assert_eq!(P3::I32, 3);

Associated Constants

const I8: i8

const I16: i16

const I32: i32

const I64: i64

const ISIZE: isize

Loading content...

Required methods

fn to_i8() -> i8

fn to_i16() -> i16

fn to_i32() -> i32

fn to_i64() -> i64

fn to_isize() -> isize

Loading content...

Implementors

impl Integer for Z0[src]

impl<U: Unsigned + NonZero> Integer for NInt<U>[src]

impl<U: Unsigned + NonZero> Integer for PInt<U>[src]

Loading content...