1 2 3 4 5 6 7
//! Typedefs for use inside Lux. /// The type for indexing into vertices when drawing shapes. pub type Idx = u32; /// The floating point type used for positions and colors. pub type Float = f32;
1 2 3 4 5 6 7
//! Typedefs for use inside Lux. /// The type for indexing into vertices when drawing shapes. pub type Idx = u32; /// The floating point type used for positions and colors. pub type Float = f32;
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).
Search functions by type signature (e.g.
vec -> usize)