about summary refs log tree commit diff
path: root/src/libstd/array.rs
AgeCommit message (Collapse)AuthorLines
2015-07-20std: Create separate docs for the primitivesBrian Anderson-55/+0
Having the primitive and module docs derived from the same source causes problems, primarily that they can't contain hyperlinks cross-referencing each other. This crates dedicated private modules in `std` to document the primitive types, then for all primitives that have a corresponding module, puts hyperlinks in moth the primitive docs and the module docs cross-linking each other. This should help clear up confusion when readers find themselves on the wrong page.
2015-07-20doc: Clean up primitive short descriptionsBrian Anderson-2/+2
This makes the primitive descriptions on the front page read properly as descriptions of types and not of the associated modules.
2015-07-10Small tweaks for the documentation of the primitive type arrayUlrik Sverdrup-4/+4
2015-07-09Expand documentation for the primitive type arrayUlrik Sverdrup-6/+35
2015-07-06doc: add some array usage examplesTshepang Lekhonkhobe-0/+13
2015-03-23rustdoc: Support for "array" primitiveTom Jakubowski-0/+13
Impls on `clean::Type::FixedVector` are now collected in the array primitive page instead of the slice primitive page. Also add a primitive docs for arrays to `std`.