cgmath/src/dim.rs

6 lines
126 B
Rust
Raw Normal View History

2012-11-15 02:22:41 +00:00
use core::cmp::Eq;
2012-11-15 03:16:44 +00:00
pub trait Dimensional<T>: Index<uint, T> {
2012-11-15 02:22:41 +00:00
static pure fn dim() -> uint;
pure fn to_ptr() -> *T;
}