diff options
| author | Tom Jakubowski <tom@crystae.net> | 2015-03-23 14:01:28 -0700 |
|---|---|---|
| committer | Tom Jakubowski <tom@crystae.net> | 2015-03-23 14:02:34 -0700 |
| commit | 2df8830642fffa6c68aa6318985cfcd2e63db81b (patch) | |
| tree | 75d69a6bdb9727c6ecf6c5816cec96b2e169b9af /src/libstd/array.rs | |
| parent | b0aad7dd4fad8d7e2e2f877a511a637258949597 (diff) | |
| download | rust-2df8830642fffa6c68aa6318985cfcd2e63db81b.tar.gz rust-2df8830642fffa6c68aa6318985cfcd2e63db81b.zip | |
rustdoc: Support for "array" primitive
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`.
Diffstat (limited to 'src/libstd/array.rs')
| -rw-r--r-- | src/libstd/array.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libstd/array.rs b/src/libstd/array.rs new file mode 100644 index 00000000000..a6b8cd71a3b --- /dev/null +++ b/src/libstd/array.rs @@ -0,0 +1,13 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +//! The fixed-size array type (`[T; n]`). + +#![doc(primitive = "array")] |
