rawpointer 0.2.0

Extra methods for raw pointers and `NonNull<T>`. For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`) and `ptrdistance`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
sudo: false
matrix:
  include:
    - rust: 1.26.0
    - rust: stable
    - rust: nightly
branches:
  only:
    - master
script:
  - |
      cargo build -v --features "$FEATURES" &&
      cargo test -v --features "$FEATURES" &&
      cargo test -v --release --features "$FEATURES"