We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ebc47b commit 8fa4857Copy full SHA for 8fa4857
src/libstd/primitive_docs.rs
@@ -366,6 +366,9 @@ mod prim_str { }
366
/// ("hello", 5, 'c');
367
/// ```
368
///
369
+/// 'Length' is also sometimes called 'arity' here; each tuple of a different
370
+/// length is a different, distinct type.
371
+///
372
/// Tuples are *heterogeneous*. This means that each element of the tuple can
373
/// have a different type. In that tuple above, it has the type:
374
@@ -409,6 +412,9 @@ mod prim_str { }
409
412
/// [`Default`]: ../default/trait.Default.html
410
413
/// [`Hash`]: ../hash/trait.Hash.html
411
414
415
+/// Due to a temporary restriction in Rust's type system, these traits are only
416
+/// implemented on tuples of arity 32 or less. In the future, this may change.
417
418
/// # Examples
419
420
/// Basic usage:
0 commit comments