rust/library/core/src
Yuki Okushi fb7948e7c1
Rollup merge of #78627 - est31:total_cmp_no_superset, r=m-ou-se
Point out that total_cmp is no strict superset of partial comparison

Partial comparison and total_cmp are not equal. This helps
preventing the mistake of creating float wrappers that
base their Ord impl on total_cmp and their PartialOrd impl on
the PartialOrd impl of the float type. PartialOrd and Ord
[are required to agree with each other](https://doc.rust-lang.org/std/cmp/trait.Ord.html#how-can-i-implement-ord).
2020-11-02 14:14:38 +09:00
..
alloc Deny broken intra-doc links in linkchecker 2020-10-15 20:22:16 -04:00
array Add lexicographical comparison doc 2020-10-26 22:39:43 +08:00
char Use matches! for core::char methods 2020-10-05 22:29:07 +08:00
convert Rollup merge of #77339 - fusion-engineering-forks:tryfrom-nonzero-to-nonzero, r=dtolnay 2020-10-23 18:26:16 +09:00
fmt fix aliasing issues in u128 formatting code 2020-10-31 16:26:06 +01:00
future Update library functions with stability attributes 2020-09-22 10:05:58 -07:00
hash fix aliasing issues in SipHasher 2020-10-31 16:26:06 +01:00
iter Add lexicographical comparison doc 2020-10-26 22:39:43 +08:00
macros Fix doc links to std::fmt 2020-10-31 18:02:55 +07:00
mem fix aliasing issues in u128 formatting code 2020-10-31 16:26:06 +01:00
num Rollup merge of #78627 - est31:total_cmp_no_superset, r=m-ou-se 2020-11-02 14:14:38 +09:00
ops documentation examples fixes in rustfmt convention 2020-11-01 18:53:22 +05:30
prelude
ptr Improve wording of core::ptr::drop_in_place docs 2020-10-29 20:09:29 -07:00
slice Rollup merge of #75078 - ijackson:slice-strip, r=steveklabnik 2020-10-29 17:05:00 +01:00
str Rollup merge of #78606 - autarch:patch-1, r=m-ou-se 2020-11-02 14:14:33 +09:00
sync Inline Default::default() for atomics 2020-11-01 04:38:41 +00:00
task switch allow_internal_unstable const fns to rustc_allow_const_fn_unstable 2020-10-21 20:54:20 +02:00
unicode
any.rs update tracking issue for const_type_id 2020-09-24 09:00:04 +10:00
ascii.rs Fixed some intra-docs links in library/core 2020-09-18 07:49:29 +08:00
bool.rs
borrow.rs Remove AsRef link as it is in the prelude 2020-08-10 20:29:20 +02:00
cell.rs Use intra-doc links for links to module-level docs 2020-10-12 19:22:47 -07:00
clone.rs Improve readability 2020-09-01 19:56:32 +02:00
cmp.rs Add lexicographical comparison doc 2020-10-26 22:39:43 +08:00
default.rs
ffi.rs Properly define va_arg and va_list for aarch64-apple-darwin 2020-10-25 21:37:01 -04:00
hint.rs hint doc use intra-doc links 2020-10-05 23:29:43 +08:00
internal_macros.rs
intrinsics.rs Wrapping intrinsics update link 2020-10-20 14:09:01 +10:00
lazy.rs Capitalize safety comments 2020-09-08 22:26:44 -04:00
lib.rs Do not depend on except for bootstrap 2020-10-27 14:45:36 -03:00
marker.rs Use Self more in core in doc when possible 2020-09-23 00:16:16 +02:00
option.rs add tracking issue number to option_insert feature gate 2020-10-23 11:44:58 +02:00
panic.rs Auto merge of #76157 - ArekPiekarz:const_caller_location_tracking_issue, r=joshtriplett 2020-09-06 20:27:51 +00:00
panicking.rs Fix const core::panic!(non_literal_str). 2020-10-22 18:41:35 +02:00
pin.rs Add tracking issue number for pin_static_ref. 2020-10-21 16:30:41 +02:00
primitive.rs
raw.rs Use intra-doc-links in core::{raw, ffi, pin} 2020-08-22 22:25:27 +02:00
result.rs Use intra-doc links for links to module-level docs 2020-10-12 19:22:47 -07:00
time.rs Make all methods of Duration const 2020-09-12 15:14:58 +02:00
tuple.rs
unit.rs