[][src]Module ndless::prelude

Ndless prelude

At the top of your code, add

use ndless::prelude::*;

to get commonly-used functions.

Re-exports

pub use dbg;
pub use print;
pub use println;

Modules

vec

A contiguous growable array type with heap-allocated contents, written Vec<T>.

Macros

format

Creates a String using interpolation of runtime expressions.

vec

Creates a Vec containing the arguments.

Structs

Box

A pointer type for heap allocation.

String

A UTF-8–encoded, growable string.

Vec

A contiguous growable array type, written Vec<T> but pronounced 'vector'.

Traits

Float

Copy and pasted from Rust std

ToOwned

A generalization of Clone to borrowed data.

ToString

A trait for converting a value to a String.

Attribute Macros

entry