Skip to content

Latest commit

 

History

History
154 lines (121 loc) · 5.36 KB

rust.rst

File metadata and controls

154 lines (121 loc) · 5.36 KB
tocdepth

1

pair: Rust; language

rust

DRYlib for Rust

html

Getting Started

Prerequisites

Installation

TODO

Library Usage

extern crate drylib as dry;

Design Principles

Reference

Modules

DRY Rust
base drylib (package)
bits TODO
code N/A
crypto TODO
data TODO
ffi TODO
geo TODO
io TODO
lang TODO
logic TODO
math TODO
media TODO
meta TODO
net TODO
qty TODO
std TODO
sys TODO
text TODO
text/ascii TODO
text/printf TODO
text/utf8 TODO
time TODO
util TODO

Module base

DRY Rust
bool dry::Bool (type alias for bool)
char dry::Char (type alias for char)
complex dry::Complex (struct)
float dry::Float (type alias for dry::Float64)
float32 dry::Float32 (type alias for f32)
float64 dry::Float64 (type alias for f64)
int dry::Int (type alias for isize)
int8 dry::Int8 (type alias for i8)
int16 dry::Int16 (type alias for i16)
int32 dry::Int32 (type alias for i32)
int64 dry::Int64 (type alias for i64)
int128 dry::Int128 (type alias for dry::Integer)
integer dry::Integer (struct)
natural dry::Natural (type alias for dry::Integer)
rational dry::Rational (struct)
real dry::Real (struct)
word dry::Word (type alias for usize)
word8 dry::Word8 (type alias for u8)
word16 dry::Word16 (type alias for u16)
word32 dry::Word32 (type alias for u32)
word64 dry::Word64 (type alias for u64)

Module math

DRY Rust
TODO TODO

Module meta

DRY Rust
TODO TODO

Module text

DRY Rust
TODO TODO

See Also

Changelog on GitHub

The comprehensive version history and release notes for DRYlib for Rust.

Arto's Notes re: Rust

Miscellaneous notes on Rust.