[go: up one dir, main page]

thin-slice 0.1.1

An owned slice that packs the slice storage into a single word when possible
Documentation
  • Coverage
  • 100%
    6 out of 6 items documented4 out of 6 items with examples
  • Size
  • Source code size: 18.45 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.75 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • heycam/thin-slice
    4 3 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • heycam

thin-slice

An owned slice that packs the slice storage into a single word when possible.

Usage

extern crate thin_slice;

use std::mem;
use thin_slice::ThinBoxedSlice;

struct Ticket {
    numbers: Box<[u8]>,
    winning: bool,
}

struct ThinTicket {
    numbers: ThinBoxedSlice<u8>,
    winning: bool,
}

fn main() {
    let nums = vec![4, 8, 15, 16, 23, 42].into_boxed_slice();
    let ticket = ThinTicket {
        numbers: nums.into(),
        winning: false,
    };
    println!("Numbers: {:?}", ticket.numbers);

    println!("size_of::<usize>():      {}", mem::size_of::<usize>());
    println!("size_of::<Ticket>():     {}", mem::size_of::<Ticket>());
    println!("size_of::<ThinTicket>(): {}", mem::size_of::<ThinTicket>());
}

Output on x86_64:

Numbers: [4, 8, 15, 16, 23, 42]
size_of::<usize>():      8
size_of::<Ticket>():     24
size_of::<ThinTicket>(): 16

License

thin-slice is distributed under the terms of the Mozilla Public License, v. 2.0.