]> git.lizzy.rs Git - rust.git/blob - src/libstd/primitive_docs.rs
docs: Fix some 'second-edition' links
[rust.git] / src / libstd / primitive_docs.rs
1 #[doc(primitive = "bool")]
2 #[doc(alias = "true")]
3 #[doc(alias = "false")]
4 //
5 /// The boolean type.
6 ///
7 /// The `bool` represents a value, which could only be either `true` or `false`. If you cast
8 /// a `bool` into an integer, `true` will be 1 and `false` will be 0.
9 ///
10 /// # Basic usage
11 ///
12 /// `bool` implements various traits, such as [`BitAnd`], [`BitOr`], [`Not`], etc.,
13 /// which allow us to perform boolean operations using `&`, `|` and `!`.
14 ///
15 /// `if` always demands a `bool` value. [`assert!`], being an important macro in testing,
16 /// checks whether an expression returns `true`.
17 ///
18 /// ```
19 /// let bool_val = true & false | false;
20 /// assert!(!bool_val);
21 /// ```
22 ///
23 /// [`assert!`]: macro.assert.html
24 /// [`BitAnd`]: ops/trait.BitAnd.html
25 /// [`BitOr`]: ops/trait.BitOr.html
26 /// [`Not`]: ops/trait.Not.html
27 ///
28 /// # Examples
29 ///
30 /// A trivial example of the usage of `bool`,
31 ///
32 /// ```
33 /// let praise_the_borrow_checker = true;
34 ///
35 /// // using the `if` conditional
36 /// if praise_the_borrow_checker {
37 ///     println!("oh, yeah!");
38 /// } else {
39 ///     println!("what?!!");
40 /// }
41 ///
42 /// // ... or, a match pattern
43 /// match praise_the_borrow_checker {
44 ///     true => println!("keep praising!"),
45 ///     false => println!("you should praise!"),
46 /// }
47 /// ```
48 ///
49 /// Also, since `bool` implements the [`Copy`](marker/trait.Copy.html) trait, we don't
50 /// have to worry about the move semantics (just like the integer and float primitives).
51 ///
52 /// Now an example of `bool` cast to integer type:
53 ///
54 /// ```
55 /// assert_eq!(true as i32, 1);
56 /// assert_eq!(false as i32, 0);
57 /// ```
58 #[stable(feature = "rust1", since = "1.0.0")]
59 mod prim_bool { }
60
61 #[doc(primitive = "never")]
62 #[doc(alias = "!")]
63 //
64 /// The `!` type, also called "never".
65 ///
66 /// `!` represents the type of computations which never resolve to any value at all. For example,
67 /// the [`exit`] function `fn exit(code: i32) -> !` exits the process without ever returning, and
68 /// so returns `!`.
69 ///
70 /// `break`, `continue` and `return` expressions also have type `!`. For example we are allowed to
71 /// write:
72 ///
73 /// ```
74 /// #![feature(never_type)]
75 /// # fn foo() -> u32 {
76 /// let x: ! = {
77 ///     return 123
78 /// };
79 /// # }
80 /// ```
81 ///
82 /// Although the `let` is pointless here, it illustrates the meaning of `!`. Since `x` is never
83 /// assigned a value (because `return` returns from the entire function), `x` can be given type
84 /// `!`. We could also replace `return 123` with a `panic!` or a never-ending `loop` and this code
85 /// would still be valid.
86 ///
87 /// A more realistic usage of `!` is in this code:
88 ///
89 /// ```
90 /// # fn get_a_number() -> Option<u32> { None }
91 /// # loop {
92 /// let num: u32 = match get_a_number() {
93 ///     Some(num) => num,
94 ///     None => break,
95 /// };
96 /// # }
97 /// ```
98 ///
99 /// Both match arms must produce values of type [`u32`], but since `break` never produces a value
100 /// at all we know it can never produce a value which isn't a [`u32`]. This illustrates another
101 /// behaviour of the `!` type - expressions with type `!` will coerce into any other type.
102 ///
103 /// [`u32`]: primitive.str.html
104 /// [`exit`]: process/fn.exit.html
105 ///
106 /// # `!` and generics
107 ///
108 /// ## Infallible errors
109 ///
110 /// The main place you'll see `!` used explicitly is in generic code. Consider the [`FromStr`]
111 /// trait:
112 ///
113 /// ```
114 /// trait FromStr: Sized {
115 ///     type Err;
116 ///     fn from_str(s: &str) -> Result<Self, Self::Err>;
117 /// }
118 /// ```
119 ///
120 /// When implementing this trait for [`String`] we need to pick a type for [`Err`]. And since
121 /// converting a string into a string will never result in an error, the appropriate type is `!`.
122 /// (Currently the type actually used is an enum with no variants, though this is only because `!`
123 /// was added to Rust at a later date and it may change in the future). With an [`Err`] type of
124 /// `!`, if we have to call [`String::from_str`] for some reason the result will be a
125 /// [`Result<String, !>`] which we can unpack like this:
126 ///
127 /// ```ignore (string-from-str-error-type-is-not-never-yet)
128 /// #[feature(exhaustive_patterns)]
129 /// // NOTE: This does not work today!
130 /// let Ok(s) = String::from_str("hello");
131 /// ```
132 ///
133 /// Since the [`Err`] variant contains a `!`, it can never occur. If the `exhaustive_patterns`
134 /// feature is present this means we can exhaustively match on [`Result<T, !>`] by just taking the
135 /// [`Ok`] variant. This illustrates another behaviour of `!` - it can be used to "delete" certain
136 /// enum variants from generic types like `Result`.
137 ///
138 /// ## Infinite loops
139 ///
140 /// While [`Result<T, !>`] is very useful for removing errors, `!` can also be used to remove
141 /// successes as well. If we think of [`Result<T, !>`] as "if this function returns, it has not
142 /// errored," we get a very intuitive idea of [`Result<!, E>`] as well: if the function returns, it
143 /// *has* errored.
144 ///
145 /// For example, consider the case of a simple web server, which can be simplified to:
146 ///
147 /// ```ignore (hypothetical-example)
148 /// loop {
149 ///     let (client, request) = get_request().expect("disconnected");
150 ///     let response = request.process();
151 ///     response.send(client);
152 /// }
153 /// ```
154 ///
155 /// Currently, this isn't ideal, because we simply panic whenever we fail to get a new connection.
156 /// Instead, we'd like to keep track of this error, like this:
157 ///
158 /// ```ignore (hypothetical-example)
159 /// loop {
160 ///     match get_request() {
161 ///         Err(err) => break err,
162 ///         Ok((client, request)) => {
163 ///             let response = request.process();
164 ///             response.send(client);
165 ///         },
166 ///     }
167 /// }
168 /// ```
169 ///
170 /// Now, when the server disconnects, we exit the loop with an error instead of panicking. While it
171 /// might be intuitive to simply return the error, we might want to wrap it in a [`Result<!, E>`]
172 /// instead:
173 ///
174 /// ```ignore (hypothetical-example)
175 /// fn server_loop() -> Result<!, ConnectionError> {
176 ///     loop {
177 ///         let (client, request) = get_request()?;
178 ///         let response = request.process();
179 ///         response.send(client);
180 ///     }
181 /// }
182 /// ```
183 ///
184 /// Now, we can use `?` instead of `match`, and the return type makes a lot more sense: if the loop
185 /// ever stops, it means that an error occurred. We don't even have to wrap the loop in an `Ok`
186 /// because `!` coerces to `Result<!, ConnectionError>` automatically.
187 ///
188 /// [`String::from_str`]: str/trait.FromStr.html#tymethod.from_str
189 /// [`Result<String, !>`]: result/enum.Result.html
190 /// [`Result<T, !>`]: result/enum.Result.html
191 /// [`Result<!, E>`]: result/enum.Result.html
192 /// [`Ok`]: result/enum.Result.html#variant.Ok
193 /// [`String`]: string/struct.String.html
194 /// [`Err`]: result/enum.Result.html#variant.Err
195 /// [`FromStr`]: str/trait.FromStr.html
196 ///
197 /// # `!` and traits
198 ///
199 /// When writing your own traits, `!` should have an `impl` whenever there is an obvious `impl`
200 /// which doesn't `panic!`. As it turns out, most traits can have an `impl` for `!`. Take [`Debug`]
201 /// for example:
202 ///
203 /// ```
204 /// #![feature(never_type)]
205 /// # use std::fmt;
206 /// # trait Debug {
207 /// # fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result;
208 /// # }
209 /// impl Debug for ! {
210 ///     fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
211 ///         *self
212 ///     }
213 /// }
214 /// ```
215 ///
216 /// Once again we're using `!`'s ability to coerce into any other type, in this case
217 /// [`fmt::Result`]. Since this method takes a `&!` as an argument we know that it can never be
218 /// called (because there is no value of type `!` for it to be called with). Writing `*self`
219 /// essentially tells the compiler "We know that this code can never be run, so just treat the
220 /// entire function body as having type [`fmt::Result`]". This pattern can be used a lot when
221 /// implementing traits for `!`. Generally, any trait which only has methods which take a `self`
222 /// parameter should have such an impl.
223 ///
224 /// On the other hand, one trait which would not be appropriate to implement is [`Default`]:
225 ///
226 /// ```
227 /// trait Default {
228 ///     fn default() -> Self;
229 /// }
230 /// ```
231 ///
232 /// Since `!` has no values, it has no default value either. It's true that we could write an
233 /// `impl` for this which simply panics, but the same is true for any type (we could `impl
234 /// Default` for (eg.) [`File`] by just making [`default()`] panic.)
235 ///
236 /// [`fmt::Result`]: fmt/type.Result.html
237 /// [`File`]: fs/struct.File.html
238 /// [`Debug`]: fmt/trait.Debug.html
239 /// [`Default`]: default/trait.Default.html
240 /// [`default()`]: default/trait.Default.html#tymethod.default
241 ///
242 #[unstable(feature = "never_type", issue = "35121")]
243 mod prim_never { }
244
245 #[doc(primitive = "char")]
246 //
247 /// A character type.
248 ///
249 /// The `char` type represents a single character. More specifically, since
250 /// 'character' isn't a well-defined concept in Unicode, `char` is a '[Unicode
251 /// scalar value]', which is similar to, but not the same as, a '[Unicode code
252 /// point]'.
253 ///
254 /// [Unicode scalar value]: http://www.unicode.org/glossary/#unicode_scalar_value
255 /// [Unicode code point]: http://www.unicode.org/glossary/#code_point
256 ///
257 /// This documentation describes a number of methods and trait implementations on the
258 /// `char` type. For technical reasons, there is additional, separate
259 /// documentation in [the `std::char` module](char/index.html) as well.
260 ///
261 /// # Representation
262 ///
263 /// `char` is always four bytes in size. This is a different representation than
264 /// a given character would have as part of a [`String`]. For example:
265 ///
266 /// ```
267 /// let v = vec!['h', 'e', 'l', 'l', 'o'];
268 ///
269 /// // five elements times four bytes for each element
270 /// assert_eq!(20, v.len() * std::mem::size_of::<char>());
271 ///
272 /// let s = String::from("hello");
273 ///
274 /// // five elements times one byte per element
275 /// assert_eq!(5, s.len() * std::mem::size_of::<u8>());
276 /// ```
277 ///
278 /// [`String`]: string/struct.String.html
279 ///
280 /// As always, remember that a human intuition for 'character' may not map to
281 /// Unicode's definitions. For example, despite looking similar, the 'é'
282 /// character is one Unicode code point while 'é' is two Unicode code points:
283 ///
284 /// ```
285 /// let mut chars = "é".chars();
286 /// // U+00e9: 'latin small letter e with acute'
287 /// assert_eq!(Some('\u{00e9}'), chars.next());
288 /// assert_eq!(None, chars.next());
289 ///
290 /// let mut chars = "é".chars();
291 /// // U+0065: 'latin small letter e'
292 /// assert_eq!(Some('\u{0065}'), chars.next());
293 /// // U+0301: 'combining acute accent'
294 /// assert_eq!(Some('\u{0301}'), chars.next());
295 /// assert_eq!(None, chars.next());
296 /// ```
297 ///
298 /// This means that the contents of the first string above _will_ fit into a
299 /// `char` while the contents of the second string _will not_. Trying to create
300 /// a `char` literal with the contents of the second string gives an error:
301 ///
302 /// ```text
303 /// error: character literal may only contain one codepoint: 'é'
304 /// let c = 'é';
305 ///         ^^^
306 /// ```
307 ///
308 /// Another implication of the 4-byte fixed size of a `char` is that
309 /// per-`char` processing can end up using a lot more memory:
310 ///
311 /// ```
312 /// let s = String::from("love: ❤️");
313 /// let v: Vec<char> = s.chars().collect();
314 ///
315 /// assert_eq!(12, std::mem::size_of_val(&s[..]));
316 /// assert_eq!(32, std::mem::size_of_val(&v[..]));
317 /// ```
318 #[stable(feature = "rust1", since = "1.0.0")]
319 mod prim_char { }
320
321 #[doc(primitive = "unit")]
322 //
323 /// The `()` type, sometimes called "unit" or "nil".
324 ///
325 /// The `()` type has exactly one value `()`, and is used when there
326 /// is no other meaningful value that could be returned. `()` is most
327 /// commonly seen implicitly: functions without a `-> ...` implicitly
328 /// have return type `()`, that is, these are equivalent:
329 ///
330 /// ```rust
331 /// fn long() -> () {}
332 ///
333 /// fn short() {}
334 /// ```
335 ///
336 /// The semicolon `;` can be used to discard the result of an
337 /// expression at the end of a block, making the expression (and thus
338 /// the block) evaluate to `()`. For example,
339 ///
340 /// ```rust
341 /// fn returns_i64() -> i64 {
342 ///     1i64
343 /// }
344 /// fn returns_unit() {
345 ///     1i64;
346 /// }
347 ///
348 /// let is_i64 = {
349 ///     returns_i64()
350 /// };
351 /// let is_unit = {
352 ///     returns_i64();
353 /// };
354 /// ```
355 ///
356 #[stable(feature = "rust1", since = "1.0.0")]
357 mod prim_unit { }
358
359 #[doc(primitive = "pointer")]
360 //
361 /// Raw, unsafe pointers, `*const T`, and `*mut T`.
362 ///
363 /// *[See also the `std::ptr` module](ptr/index.html).*
364 ///
365 /// Working with raw pointers in Rust is uncommon,
366 /// typically limited to a few patterns.
367 ///
368 /// Use the [`null`] and [`null_mut`] functions to create null pointers, and the
369 /// [`is_null`] method of the `*const T` and `*mut T` types to check for null.
370 /// The `*const T` and `*mut T` types also define the [`offset`] method, for
371 /// pointer math.
372 ///
373 /// # Common ways to create raw pointers
374 ///
375 /// ## 1. Coerce a reference (`&T`) or mutable reference (`&mut T`).
376 ///
377 /// ```
378 /// let my_num: i32 = 10;
379 /// let my_num_ptr: *const i32 = &my_num;
380 /// let mut my_speed: i32 = 88;
381 /// let my_speed_ptr: *mut i32 = &mut my_speed;
382 /// ```
383 ///
384 /// To get a pointer to a boxed value, dereference the box:
385 ///
386 /// ```
387 /// let my_num: Box<i32> = Box::new(10);
388 /// let my_num_ptr: *const i32 = &*my_num;
389 /// let mut my_speed: Box<i32> = Box::new(88);
390 /// let my_speed_ptr: *mut i32 = &mut *my_speed;
391 /// ```
392 ///
393 /// This does not take ownership of the original allocation
394 /// and requires no resource management later,
395 /// but you must not use the pointer after its lifetime.
396 ///
397 /// ## 2. Consume a box (`Box<T>`).
398 ///
399 /// The [`into_raw`] function consumes a box and returns
400 /// the raw pointer. It doesn't destroy `T` or deallocate any memory.
401 ///
402 /// ```
403 /// let my_speed: Box<i32> = Box::new(88);
404 /// let my_speed: *mut i32 = Box::into_raw(my_speed);
405 ///
406 /// // By taking ownership of the original `Box<T>` though
407 /// // we are obligated to put it together later to be destroyed.
408 /// unsafe {
409 ///     drop(Box::from_raw(my_speed));
410 /// }
411 /// ```
412 ///
413 /// Note that here the call to [`drop`] is for clarity - it indicates
414 /// that we are done with the given value and it should be destroyed.
415 ///
416 /// ## 3. Get it from C.
417 ///
418 /// ```
419 /// # #![feature(rustc_private)]
420 /// extern crate libc;
421 ///
422 /// use std::mem;
423 ///
424 /// fn main() {
425 ///     unsafe {
426 ///         let my_num: *mut i32 = libc::malloc(mem::size_of::<i32>()) as *mut i32;
427 ///         if my_num.is_null() {
428 ///             panic!("failed to allocate memory");
429 ///         }
430 ///         libc::free(my_num as *mut libc::c_void);
431 ///     }
432 /// }
433 /// ```
434 ///
435 /// Usually you wouldn't literally use `malloc` and `free` from Rust,
436 /// but C APIs hand out a lot of pointers generally, so are a common source
437 /// of raw pointers in Rust.
438 ///
439 /// [`null`]: ../std/ptr/fn.null.html
440 /// [`null_mut`]: ../std/ptr/fn.null_mut.html
441 /// [`is_null`]: ../std/primitive.pointer.html#method.is_null
442 /// [`offset`]: ../std/primitive.pointer.html#method.offset
443 /// [`into_raw`]: ../std/boxed/struct.Box.html#method.into_raw
444 /// [`drop`]: ../std/mem/fn.drop.html
445 #[stable(feature = "rust1", since = "1.0.0")]
446 mod prim_pointer { }
447
448 #[doc(primitive = "array")]
449 //
450 /// A fixed-size array, denoted `[T; N]`, for the element type, `T`, and the
451 /// non-negative compile-time constant size, `N`.
452 ///
453 /// There are two syntactic forms for creating an array:
454 ///
455 /// * A list with each element, i.e., `[x, y, z]`.
456 /// * A repeat expression `[x; N]`, which produces an array with `N` copies of `x`.
457 ///   The type of `x` must be [`Copy`][copy].
458 ///
459 /// Arrays of sizes from 0 to 32 (inclusive) implement the following traits if
460 /// the element type allows it:
461 ///
462 /// - [`Debug`][debug]
463 /// - [`IntoIterator`][intoiterator] (implemented for `&[T; N]` and `&mut [T; N]`)
464 /// - [`PartialEq`][partialeq], [`PartialOrd`][partialord], [`Eq`][eq], [`Ord`][ord]
465 /// - [`Hash`][hash]
466 /// - [`AsRef`][asref], [`AsMut`][asmut]
467 /// - [`Borrow`][borrow], [`BorrowMut`][borrowmut]
468 /// - [`Default`][default]
469 ///
470 /// This limitation on the size `N` exists because Rust does not yet support
471 /// code that is generic over the size of an array type. `[Foo; 3]` and `[Bar; 3]`
472 /// are instances of same generic type `[T; 3]`, but `[Foo; 3]` and `[Foo; 5]` are
473 /// entirely different types. As a stopgap, trait implementations are
474 /// statically generated up to size 32.
475 ///
476 /// Arrays of *any* size are [`Copy`][copy] if the element type is [`Copy`][copy]
477 /// and [`Clone`][clone] if the element type is [`Clone`][clone]. This works
478 /// because [`Copy`][copy] and [`Clone`][clone] traits are specially known
479 /// to the compiler.
480 ///
481 /// Arrays coerce to [slices (`[T]`)][slice], so a slice method may be called on
482 /// an array. Indeed, this provides most of the API for working with arrays.
483 /// Slices have a dynamic size and do not coerce to arrays.
484 ///
485 /// There is no way to move elements out of an array. See [`mem::replace`][replace]
486 /// for an alternative.
487 ///
488 /// # Examples
489 ///
490 /// ```
491 /// let mut array: [i32; 3] = [0; 3];
492 ///
493 /// array[1] = 1;
494 /// array[2] = 2;
495 ///
496 /// assert_eq!([1, 2], &array[1..]);
497 ///
498 /// // This loop prints: 0 1 2
499 /// for x in &array {
500 ///     print!("{} ", x);
501 /// }
502 /// ```
503 ///
504 /// An array itself is not iterable:
505 ///
506 /// ```compile_fail,E0277
507 /// let array: [i32; 3] = [0; 3];
508 ///
509 /// for x in array { }
510 /// // error: the trait bound `[i32; 3]: std::iter::Iterator` is not satisfied
511 /// ```
512 ///
513 /// The solution is to coerce the array to a slice by calling a slice method:
514 ///
515 /// ```
516 /// # let array: [i32; 3] = [0; 3];
517 /// for x in array.iter() { }
518 /// ```
519 ///
520 /// If the array has 32 or fewer elements (see above), you can also use the
521 /// array reference's [`IntoIterator`] implementation:
522 ///
523 /// ```
524 /// # let array: [i32; 3] = [0; 3];
525 /// for x in &array { }
526 /// ```
527 ///
528 /// [slice]: primitive.slice.html
529 /// [copy]: marker/trait.Copy.html
530 /// [clone]: clone/trait.Clone.html
531 /// [debug]: fmt/trait.Debug.html
532 /// [intoiterator]: iter/trait.IntoIterator.html
533 /// [partialeq]: cmp/trait.PartialEq.html
534 /// [partialord]: cmp/trait.PartialOrd.html
535 /// [eq]: cmp/trait.Eq.html
536 /// [ord]: cmp/trait.Ord.html
537 /// [hash]: hash/trait.Hash.html
538 /// [asref]: convert/trait.AsRef.html
539 /// [asmut]: convert/trait.AsMut.html
540 /// [borrow]: borrow/trait.Borrow.html
541 /// [borrowmut]: borrow/trait.BorrowMut.html
542 /// [default]: default/trait.Default.html
543 /// [replace]: mem/fn.replace.html
544 /// [`IntoIterator`]: iter/trait.IntoIterator.html
545 ///
546 #[stable(feature = "rust1", since = "1.0.0")]
547 mod prim_array { }
548
549 #[doc(primitive = "slice")]
550 #[doc(alias = "[")]
551 #[doc(alias = "]")]
552 #[doc(alias = "[]")]
553 //
554 /// A dynamically-sized view into a contiguous sequence, `[T]`.
555 ///
556 /// *[See also the `std::slice` module](slice/index.html).*
557 ///
558 /// Slices are a view into a block of memory represented as a pointer and a
559 /// length.
560 ///
561 /// ```
562 /// // slicing a Vec
563 /// let vec = vec![1, 2, 3];
564 /// let int_slice = &vec[..];
565 /// // coercing an array to a slice
566 /// let str_slice: &[&str] = &["one", "two", "three"];
567 /// ```
568 ///
569 /// Slices are either mutable or shared. The shared slice type is `&[T]`,
570 /// while the mutable slice type is `&mut [T]`, where `T` represents the element
571 /// type. For example, you can mutate the block of memory that a mutable slice
572 /// points to:
573 ///
574 /// ```
575 /// let x = &mut [1, 2, 3];
576 /// x[1] = 7;
577 /// assert_eq!(x, &[1, 7, 3]);
578 /// ```
579 ///
580 #[stable(feature = "rust1", since = "1.0.0")]
581 mod prim_slice { }
582
583 #[doc(primitive = "str")]
584 //
585 /// String slices.
586 ///
587 /// *[See also the `std::str` module](str/index.html).*
588 ///
589 /// The `str` type, also called a 'string slice', is the most primitive string
590 /// type. It is usually seen in its borrowed form, `&str`. It is also the type
591 /// of string literals, `&'static str`.
592 ///
593 /// String slices are always valid UTF-8.
594 ///
595 /// # Examples
596 ///
597 /// String literals are string slices:
598 ///
599 /// ```
600 /// let hello = "Hello, world!";
601 ///
602 /// // with an explicit type annotation
603 /// let hello: &'static str = "Hello, world!";
604 /// ```
605 ///
606 /// They are `'static` because they're stored directly in the final binary, and
607 /// so will be valid for the `'static` duration.
608 ///
609 /// # Representation
610 ///
611 /// A `&str` is made up of two components: a pointer to some bytes, and a
612 /// length. You can look at these with the [`as_ptr`] and [`len`] methods:
613 ///
614 /// ```
615 /// use std::slice;
616 /// use std::str;
617 ///
618 /// let story = "Once upon a time...";
619 ///
620 /// let ptr = story.as_ptr();
621 /// let len = story.len();
622 ///
623 /// // story has nineteen bytes
624 /// assert_eq!(19, len);
625 ///
626 /// // We can re-build a str out of ptr and len. This is all unsafe because
627 /// // we are responsible for making sure the two components are valid:
628 /// let s = unsafe {
629 ///     // First, we build a &[u8]...
630 ///     let slice = slice::from_raw_parts(ptr, len);
631 ///
632 ///     // ... and then convert that slice into a string slice
633 ///     str::from_utf8(slice)
634 /// };
635 ///
636 /// assert_eq!(s, Ok(story));
637 /// ```
638 ///
639 /// [`as_ptr`]: #method.as_ptr
640 /// [`len`]: #method.len
641 ///
642 /// Note: This example shows the internals of `&str`. `unsafe` should not be
643 /// used to get a string slice under normal circumstances. Use `as_slice`
644 /// instead.
645 #[stable(feature = "rust1", since = "1.0.0")]
646 mod prim_str { }
647
648 #[doc(primitive = "tuple")]
649 #[doc(alias = "(")]
650 #[doc(alias = ")")]
651 #[doc(alias = "()")]
652 //
653 /// A finite heterogeneous sequence, `(T, U, ..)`.
654 ///
655 /// Let's cover each of those in turn:
656 ///
657 /// Tuples are *finite*. In other words, a tuple has a length. Here's a tuple
658 /// of length `3`:
659 ///
660 /// ```
661 /// ("hello", 5, 'c');
662 /// ```
663 ///
664 /// 'Length' is also sometimes called 'arity' here; each tuple of a different
665 /// length is a different, distinct type.
666 ///
667 /// Tuples are *heterogeneous*. This means that each element of the tuple can
668 /// have a different type. In that tuple above, it has the type:
669 ///
670 /// ```
671 /// # let _:
672 /// (&'static str, i32, char)
673 /// # = ("hello", 5, 'c');
674 /// ```
675 ///
676 /// Tuples are a *sequence*. This means that they can be accessed by position;
677 /// this is called 'tuple indexing', and it looks like this:
678 ///
679 /// ```rust
680 /// let tuple = ("hello", 5, 'c');
681 ///
682 /// assert_eq!(tuple.0, "hello");
683 /// assert_eq!(tuple.1, 5);
684 /// assert_eq!(tuple.2, 'c');
685 /// ```
686 ///
687 /// For more about tuples, see [the book](../book/ch03-02-data-types.html#the-tuple-type).
688 ///
689 /// # Trait implementations
690 ///
691 /// If every type inside a tuple implements one of the following traits, then a
692 /// tuple itself also implements it.
693 ///
694 /// * [`Clone`]
695 /// * [`Copy`]
696 /// * [`PartialEq`]
697 /// * [`Eq`]
698 /// * [`PartialOrd`]
699 /// * [`Ord`]
700 /// * [`Debug`]
701 /// * [`Default`]
702 /// * [`Hash`]
703 ///
704 /// [`Clone`]: clone/trait.Clone.html
705 /// [`Copy`]: marker/trait.Copy.html
706 /// [`PartialEq`]: cmp/trait.PartialEq.html
707 /// [`Eq`]: cmp/trait.Eq.html
708 /// [`PartialOrd`]: cmp/trait.PartialOrd.html
709 /// [`Ord`]: cmp/trait.Ord.html
710 /// [`Debug`]: fmt/trait.Debug.html
711 /// [`Default`]: default/trait.Default.html
712 /// [`Hash`]: hash/trait.Hash.html
713 ///
714 /// Due to a temporary restriction in Rust's type system, these traits are only
715 /// implemented on tuples of arity 12 or less. In the future, this may change.
716 ///
717 /// # Examples
718 ///
719 /// Basic usage:
720 ///
721 /// ```
722 /// let tuple = ("hello", 5, 'c');
723 ///
724 /// assert_eq!(tuple.0, "hello");
725 /// ```
726 ///
727 /// Tuples are often used as a return type when you want to return more than
728 /// one value:
729 ///
730 /// ```
731 /// fn calculate_point() -> (i32, i32) {
732 ///     // Don't do a calculation, that's not the point of the example
733 ///     (4, 5)
734 /// }
735 ///
736 /// let point = calculate_point();
737 ///
738 /// assert_eq!(point.0, 4);
739 /// assert_eq!(point.1, 5);
740 ///
741 /// // Combining this with patterns can be nicer.
742 ///
743 /// let (x, y) = calculate_point();
744 ///
745 /// assert_eq!(x, 4);
746 /// assert_eq!(y, 5);
747 /// ```
748 ///
749 #[stable(feature = "rust1", since = "1.0.0")]
750 mod prim_tuple { }
751
752 #[doc(primitive = "f32")]
753 /// The 32-bit floating point type.
754 ///
755 /// *[See also the `std::f32` module](f32/index.html).*
756 ///
757 #[stable(feature = "rust1", since = "1.0.0")]
758 mod prim_f32 { }
759
760 #[doc(primitive = "f64")]
761 //
762 /// The 64-bit floating point type.
763 ///
764 /// *[See also the `std::f64` module](f64/index.html).*
765 ///
766 #[stable(feature = "rust1", since = "1.0.0")]
767 mod prim_f64 { }
768
769 #[doc(primitive = "i8")]
770 //
771 /// The 8-bit signed integer type.
772 ///
773 /// *[See also the `std::i8` module](i8/index.html).*
774 #[stable(feature = "rust1", since = "1.0.0")]
775 mod prim_i8 { }
776
777 #[doc(primitive = "i16")]
778 //
779 /// The 16-bit signed integer type.
780 ///
781 /// *[See also the `std::i16` module](i16/index.html).*
782 #[stable(feature = "rust1", since = "1.0.0")]
783 mod prim_i16 { }
784
785 #[doc(primitive = "i32")]
786 //
787 /// The 32-bit signed integer type.
788 ///
789 /// *[See also the `std::i32` module](i32/index.html).*
790 #[stable(feature = "rust1", since = "1.0.0")]
791 mod prim_i32 { }
792
793 #[doc(primitive = "i64")]
794 //
795 /// The 64-bit signed integer type.
796 ///
797 /// *[See also the `std::i64` module](i64/index.html).*
798 #[stable(feature = "rust1", since = "1.0.0")]
799 mod prim_i64 { }
800
801 #[doc(primitive = "i128")]
802 //
803 /// The 128-bit signed integer type.
804 ///
805 /// *[See also the `std::i128` module](i128/index.html).*
806 #[stable(feature = "i128", since="1.26.0")]
807 mod prim_i128 { }
808
809 #[doc(primitive = "u8")]
810 //
811 /// The 8-bit unsigned integer type.
812 ///
813 /// *[See also the `std::u8` module](u8/index.html).*
814 #[stable(feature = "rust1", since = "1.0.0")]
815 mod prim_u8 { }
816
817 #[doc(primitive = "u16")]
818 //
819 /// The 16-bit unsigned integer type.
820 ///
821 /// *[See also the `std::u16` module](u16/index.html).*
822 #[stable(feature = "rust1", since = "1.0.0")]
823 mod prim_u16 { }
824
825 #[doc(primitive = "u32")]
826 //
827 /// The 32-bit unsigned integer type.
828 ///
829 /// *[See also the `std::u32` module](u32/index.html).*
830 #[stable(feature = "rust1", since = "1.0.0")]
831 mod prim_u32 { }
832
833 #[doc(primitive = "u64")]
834 //
835 /// The 64-bit unsigned integer type.
836 ///
837 /// *[See also the `std::u64` module](u64/index.html).*
838 #[stable(feature = "rust1", since = "1.0.0")]
839 mod prim_u64 { }
840
841 #[doc(primitive = "u128")]
842 //
843 /// The 128-bit unsigned integer type.
844 ///
845 /// *[See also the `std::u128` module](u128/index.html).*
846 #[stable(feature = "i128", since="1.26.0")]
847 mod prim_u128 { }
848
849 #[doc(primitive = "isize")]
850 //
851 /// The pointer-sized signed integer type.
852 ///
853 /// *[See also the `std::isize` module](isize/index.html).*
854 ///
855 /// The size of this primitive is how many bytes it takes to reference any
856 /// location in memory. For example, on a 32 bit target, this is 4 bytes
857 /// and on a 64 bit target, this is 8 bytes.
858 #[stable(feature = "rust1", since = "1.0.0")]
859 mod prim_isize { }
860
861 #[doc(primitive = "usize")]
862 //
863 /// The pointer-sized unsigned integer type.
864 ///
865 /// *[See also the `std::usize` module](usize/index.html).*
866 ///
867 /// The size of this primitive is how many bytes it takes to reference any
868 /// location in memory. For example, on a 32 bit target, this is 4 bytes
869 /// and on a 64 bit target, this is 8 bytes.
870 #[stable(feature = "rust1", since = "1.0.0")]
871 mod prim_usize { }
872
873 #[doc(primitive = "reference")]
874 #[doc(alias = "&")]
875 //
876 /// References, both shared and mutable.
877 ///
878 /// A reference represents a borrow of some owned value. You can get one by using the `&` or `&mut`
879 /// operators on a value, or by using a `ref` or `ref mut` pattern.
880 ///
881 /// For those familiar with pointers, a reference is just a pointer that is assumed to not be null.
882 /// In fact, `Option<&T>` has the same memory representation as a nullable pointer, and can be
883 /// passed across FFI boundaries as such.
884 ///
885 /// In most cases, references can be used much like the original value. Field access, method
886 /// calling, and indexing work the same (save for mutability rules, of course). In addition, the
887 /// comparison operators transparently defer to the referent's implementation, allowing references
888 /// to be compared the same as owned values.
889 ///
890 /// References have a lifetime attached to them, which represents the scope for which the borrow is
891 /// valid. A lifetime is said to "outlive" another one if its representative scope is as long or
892 /// longer than the other. The `'static` lifetime is the longest lifetime, which represents the
893 /// total life of the program. For example, string literals have a `'static` lifetime because the
894 /// text data is embedded into the binary of the program, rather than in an allocation that needs
895 /// to be dynamically managed.
896 ///
897 /// `&mut T` references can be freely coerced into `&T` references with the same referent type, and
898 /// references with longer lifetimes can be freely coerced into references with shorter ones.
899 ///
900 /// Reference equality by address, instead of comparing the values pointed to, is accomplished via
901 /// implicit reference-pointer coercion and raw pointer equality via [`ptr::eq`], while
902 /// [`PartialEq`] compares values.
903 ///
904 /// [`ptr::eq`]: ptr/fn.eq.html
905 /// [`PartialEq`]: cmp/trait.PartialEq.html
906 ///
907 /// ```
908 /// use std::ptr;
909 ///
910 /// let five = 5;
911 /// let other_five = 5;
912 /// let five_ref = &five;
913 /// let same_five_ref = &five;
914 /// let other_five_ref = &other_five;
915 ///
916 /// assert!(five_ref == same_five_ref);
917 /// assert!(five_ref == other_five_ref);
918 ///
919 /// assert!(ptr::eq(five_ref, same_five_ref));
920 /// assert!(!ptr::eq(five_ref, other_five_ref));
921 /// ```
922 ///
923 /// For more information on how to use references, see [the book's section on "References and
924 /// Borrowing"][book-refs].
925 ///
926 /// [book-refs]: ../book/ch04-02-references-and-borrowing.html
927 ///
928 /// # Trait implementations
929 ///
930 /// The following traits are implemented for all `&T`, regardless of the type of its referent:
931 ///
932 /// * [`Copy`]
933 /// * [`Clone`] \(Note that this will not defer to `T`'s `Clone` implementation if it exists!)
934 /// * [`Deref`]
935 /// * [`Borrow`]
936 /// * [`Pointer`]
937 ///
938 /// [`Copy`]: marker/trait.Copy.html
939 /// [`Clone`]: clone/trait.Clone.html
940 /// [`Deref`]: ops/trait.Deref.html
941 /// [`Borrow`]: borrow/trait.Borrow.html
942 /// [`Pointer`]: fmt/trait.Pointer.html
943 ///
944 /// `&mut T` references get all of the above except `Copy` and `Clone` (to prevent creating
945 /// multiple simultaneous mutable borrows), plus the following, regardless of the type of its
946 /// referent:
947 ///
948 /// * [`DerefMut`]
949 /// * [`BorrowMut`]
950 ///
951 /// [`DerefMut`]: ops/trait.DerefMut.html
952 /// [`BorrowMut`]: borrow/trait.BorrowMut.html
953 ///
954 /// The following traits are implemented on `&T` references if the underlying `T` also implements
955 /// that trait:
956 ///
957 /// * All the traits in [`std::fmt`] except [`Pointer`] and [`fmt::Write`]
958 /// * [`PartialOrd`]
959 /// * [`Ord`]
960 /// * [`PartialEq`]
961 /// * [`Eq`]
962 /// * [`AsRef`]
963 /// * [`Fn`] \(in addition, `&T` references get [`FnMut`] and [`FnOnce`] if `T: Fn`)
964 /// * [`Hash`]
965 /// * [`ToSocketAddrs`]
966 ///
967 /// [`std::fmt`]: fmt/index.html
968 /// [`fmt::Write`]: fmt/trait.Write.html
969 /// [`PartialOrd`]: cmp/trait.PartialOrd.html
970 /// [`Ord`]: cmp/trait.Ord.html
971 /// [`PartialEq`]: cmp/trait.PartialEq.html
972 /// [`Eq`]: cmp/trait.Eq.html
973 /// [`AsRef`]: convert/trait.AsRef.html
974 /// [`Fn`]: ops/trait.Fn.html
975 /// [`FnMut`]: ops/trait.FnMut.html
976 /// [`FnOnce`]: ops/trait.FnOnce.html
977 /// [`Hash`]: hash/trait.Hash.html
978 /// [`ToSocketAddrs`]: net/trait.ToSocketAddrs.html
979 ///
980 /// `&mut T` references get all of the above except `ToSocketAddrs`, plus the following, if `T`
981 /// implements that trait:
982 ///
983 /// * [`AsMut`]
984 /// * [`FnMut`] \(in addition, `&mut T` references get [`FnOnce`] if `T: FnMut`)
985 /// * [`fmt::Write`]
986 /// * [`Iterator`]
987 /// * [`DoubleEndedIterator`]
988 /// * [`ExactSizeIterator`]
989 /// * [`FusedIterator`]
990 /// * [`TrustedLen`]
991 /// * [`Send`] \(note that `&T` references only get `Send` if `T: Sync`)
992 /// * [`io::Write`]
993 /// * [`Read`]
994 /// * [`Seek`]
995 /// * [`BufRead`]
996 ///
997 /// [`AsMut`]: convert/trait.AsMut.html
998 /// [`Iterator`]: iter/trait.Iterator.html
999 /// [`DoubleEndedIterator`]: iter/trait.DoubleEndedIterator.html
1000 /// [`ExactSizeIterator`]: iter/trait.ExactSizeIterator.html
1001 /// [`FusedIterator`]: iter/trait.FusedIterator.html
1002 /// [`TrustedLen`]: iter/trait.TrustedLen.html
1003 /// [`Send`]: marker/trait.Send.html
1004 /// [`io::Write`]: io/trait.Write.html
1005 /// [`Read`]: io/trait.Read.html
1006 /// [`Seek`]: io/trait.Seek.html
1007 /// [`BufRead`]: io/trait.BufRead.html
1008 ///
1009 /// Note that due to method call deref coercion, simply calling a trait method will act like they
1010 /// work on references as well as they do on owned values! The implementations described here are
1011 /// meant for generic contexts, where the final type `T` is a type parameter or otherwise not
1012 /// locally known.
1013 #[stable(feature = "rust1", since = "1.0.0")]
1014 mod prim_ref { }
1015
1016 #[doc(primitive = "fn")]
1017 //
1018 /// Function pointers, like `fn(usize) -> bool`.
1019 ///
1020 /// *See also the traits [`Fn`], [`FnMut`], and [`FnOnce`].*
1021 ///
1022 /// [`Fn`]: ops/trait.Fn.html
1023 /// [`FnMut`]: ops/trait.FnMut.html
1024 /// [`FnOnce`]: ops/trait.FnOnce.html
1025 ///
1026 /// Plain function pointers are obtained by casting either plain functions, or closures that don't
1027 /// capture an environment:
1028 ///
1029 /// ```
1030 /// fn add_one(x: usize) -> usize {
1031 ///     x + 1
1032 /// }
1033 ///
1034 /// let ptr: fn(usize) -> usize = add_one;
1035 /// assert_eq!(ptr(5), 6);
1036 ///
1037 /// let clos: fn(usize) -> usize = |x| x + 5;
1038 /// assert_eq!(clos(5), 10);
1039 /// ```
1040 ///
1041 /// In addition to varying based on their signature, function pointers come in two flavors: safe
1042 /// and unsafe. Plain `fn()` function pointers can only point to safe functions,
1043 /// while `unsafe fn()` function pointers can point to safe or unsafe functions.
1044 ///
1045 /// ```
1046 /// fn add_one(x: usize) -> usize {
1047 ///     x + 1
1048 /// }
1049 ///
1050 /// unsafe fn add_one_unsafely(x: usize) -> usize {
1051 ///     x + 1
1052 /// }
1053 ///
1054 /// let safe_ptr: fn(usize) -> usize = add_one;
1055 ///
1056 /// //ERROR: mismatched types: expected normal fn, found unsafe fn
1057 /// //let bad_ptr: fn(usize) -> usize = add_one_unsafely;
1058 ///
1059 /// let unsafe_ptr: unsafe fn(usize) -> usize = add_one_unsafely;
1060 /// let really_safe_ptr: unsafe fn(usize) -> usize = add_one;
1061 /// ```
1062 ///
1063 /// On top of that, function pointers can vary based on what ABI they use. This is achieved by
1064 /// adding the `extern` keyword to the type name, followed by the ABI in question. For example,
1065 /// `fn()` is different from `extern "C" fn()`, which itself is different from `extern "stdcall"
1066 /// fn()`, and so on for the various ABIs that Rust supports.  Non-`extern` functions have an ABI
1067 /// of `"Rust"`, and `extern` functions without an explicit ABI have an ABI of `"C"`. For more
1068 /// information, see [the nomicon's section on foreign calling conventions][nomicon-abi].
1069 ///
1070 /// [nomicon-abi]: ../nomicon/ffi.html#foreign-calling-conventions
1071 ///
1072 /// Extern function declarations with the "C" or "cdecl" ABIs can also be *variadic*, allowing them
1073 /// to be called with a variable number of arguments. Normal rust functions, even those with an
1074 /// `extern "ABI"`, cannot be variadic. For more information, see [the nomicon's section on
1075 /// variadic functions][nomicon-variadic].
1076 ///
1077 /// [nomicon-variadic]: ../nomicon/ffi.html#variadic-functions
1078 ///
1079 /// These markers can be combined, so `unsafe extern "stdcall" fn()` is a valid type.
1080 ///
1081 /// Like references in rust, function pointers are assumed to not be null, so if you want to pass a
1082 /// function pointer over FFI and be able to accommodate null pointers, make your type
1083 /// `Option<fn()>` with your required signature.
1084 ///
1085 /// Function pointers implement the following traits:
1086 ///
1087 /// * [`Clone`]
1088 /// * [`PartialEq`]
1089 /// * [`Eq`]
1090 /// * [`PartialOrd`]
1091 /// * [`Ord`]
1092 /// * [`Hash`]
1093 /// * [`Pointer`]
1094 /// * [`Debug`]
1095 ///
1096 /// [`Clone`]: clone/trait.Clone.html
1097 /// [`PartialEq`]: cmp/trait.PartialEq.html
1098 /// [`Eq`]: cmp/trait.Eq.html
1099 /// [`PartialOrd`]: cmp/trait.PartialOrd.html
1100 /// [`Ord`]: cmp/trait.Ord.html
1101 /// [`Hash`]: hash/trait.Hash.html
1102 /// [`Pointer`]: fmt/trait.Pointer.html
1103 /// [`Debug`]: fmt/trait.Debug.html
1104 ///
1105 /// Due to a temporary restriction in Rust's type system, these traits are only implemented on
1106 /// functions that take 12 arguments or less, with the `"Rust"` and `"C"` ABIs. In the future, this
1107 /// may change.
1108 ///
1109 /// In addition, function pointers of *any* signature, ABI, or safety are [`Copy`], and all *safe*
1110 /// function pointers implement [`Fn`], [`FnMut`], and [`FnOnce`]. This works because these traits
1111 /// are specially known to the compiler.
1112 ///
1113 /// [`Copy`]: marker/trait.Copy.html
1114 #[stable(feature = "rust1", since = "1.0.0")]
1115 mod prim_fn { }