1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! ポインタ系データ構造。
//!
//! ## Contents
//!
//! - [生ポインタ](rawptr/index.html)
//! - [未初期化の値](maybe_uninit/index.html)
//! - [variance](variance/index.html)
//! - [エイリアスモデル](alias_model/index.html)

#![allow(dead_code)]

pub mod alias_model;
pub mod maybe_uninit;
pub mod rawptr;
pub mod variance;

mod sample_handle;
mod sample_list;
mod sample_noderef;

mod draft;