7 releases (breaking)

new 0.6.0 May 11, 2024
0.5.0 Mar 16, 2024
0.4.0 Mar 16, 2024
0.3.0 Mar 16, 2024
0.1.0 Jun 26, 2022

#783 in Development tools

Download history 197/week @ 2024-01-25 181/week @ 2024-02-01 259/week @ 2024-02-08 430/week @ 2024-02-15 444/week @ 2024-02-22 514/week @ 2024-02-29 1297/week @ 2024-03-07 3603/week @ 2024-03-14 2094/week @ 2024-03-21 564/week @ 2024-03-28 675/week @ 2024-04-04 531/week @ 2024-04-11 392/week @ 2024-04-18 749/week @ 2024-04-25 662/week @ 2024-05-02 1648/week @ 2024-05-09

3,474 downloads per month
Used in 81 crates (4 directly)

MIT license

10KB
111 lines

Module :: mem_tools

experimental rust-status docs.rs Open in Gitpod discord

Collection of tools to manipulate memory.

Performant size / pointer / region / data comparing.

Basic use-case


use mem_tools as mem;

// Are two pointers are the same, not taking into accoint type.
// Unlike `std::ptr::eq()` does not require arguments to have the same type.
let src1 = ( 1, );
let src2 = ( 1, );
assert!( !mem::same_ptr( &src1, &src2 ) );

// Are two pointers points on data of the same size.
let src1 = "abc";
let src2 = "cba";
assert!( mem::same_size( src1, src2 ) );

// Are two pointers points on the same region, ie same size and same pointer.
// Does not require arguments to have the same type.
let src1 = "abc";
let src2 = "abc";
assert!( mem::same_region( src1, src2 ) );

To add to your project

cargo add mem_tools

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/mem_tools_trivial
cargo run

Sample

discord Open in Gitpod docs.rs docs.rs](https://docs.rs/meta_tools)

No runtime deps