1
- /// Entry point of thread panic. For details, see `std::macros`.
1
+ /// Panics the current thread.
2
+ ///
3
+ /// For details, see `std::macros`.
2
4
#[ macro_export]
3
5
#[ allow_internal_unstable( core_panic, __rust_unstable_column) ]
4
6
#[ stable( feature = "core" , since = "1.6.0" ) ]
@@ -132,7 +134,7 @@ macro_rules! assert_ne {
132
134
} ) ;
133
135
}
134
136
135
- /// Ensure that a boolean expression is `true` at runtime.
137
+ /// Asserts that a boolean expression is `true` at runtime.
136
138
///
137
139
/// This will invoke the [`panic!`] macro if the provided expression cannot be
138
140
/// evaluated to `true` at runtime.
@@ -236,8 +238,7 @@ macro_rules! debug_assert_ne {
236
238
( $( $arg: tt) * ) => ( if cfg!( debug_assertions) { assert_ne!( $( $arg) * ) ; } )
237
239
}
238
240
239
- /// Helper macro for reducing boilerplate code for matching `Result` together
240
- /// with converting downstream errors.
241
+ /// Unwraps a result or propagates its error.
241
242
///
242
243
/// The `?` operator was added to replace `try!` and should be used instead.
243
244
/// Furthermore, `try` is a reserved word in Rust 2018, so if you must use
@@ -312,7 +313,7 @@ macro_rules! r#try {
312
313
( $expr: expr, ) => ( r#try!( $expr) ) ;
313
314
}
314
315
315
- /// Write formatted data into a buffer.
316
+ /// Writes formatted data into a buffer.
316
317
///
317
318
/// This macro accepts a format string, a list of arguments, and a 'writer'. Arguments will be
318
319
/// formatted according to the specified format string and the result will be passed to the writer.
@@ -434,7 +435,7 @@ macro_rules! writeln {
434
435
) ;
435
436
}
436
437
437
- /// A utility macro for indicating unreachable code.
438
+ /// Indicates unreachable code.
438
439
///
439
440
/// This is useful any time that the compiler can't determine that some code is unreachable. For
440
441
/// example:
@@ -502,7 +503,7 @@ macro_rules! unreachable {
502
503
} ) ;
503
504
}
504
505
505
- /// A standardized placeholder for marking unfinished code.
506
+ /// Indicates unfinished code.
506
507
///
507
508
/// This can be useful if you are prototyping and are just looking to have your
508
509
/// code type-check, or if you're implementing a trait that requires multiple
@@ -559,10 +560,10 @@ macro_rules! unimplemented {
559
560
( $( $arg: tt) +) => ( panic!( "not yet implemented: {}" , format_args!( $( $arg) * ) ) ) ;
560
561
}
561
562
562
- /// A standardized placeholder for marking unfinished code.
563
+ /// Indicates unfinished code.
563
564
///
564
565
/// This can be useful if you are prototyping and are just looking to have your
565
- /// code typecheck. `todo!` works exactly like `unimplemented!`, there only
566
+ /// code typecheck. `todo!` works exactly like `unimplemented!`. The only
566
567
/// difference between the two macros is the name.
567
568
///
568
569
/// # Panics
@@ -618,7 +619,7 @@ macro_rules! todo {
618
619
( $( $arg: tt) +) => ( panic!( "not yet implemented: {}" , format_args!( $( $arg) * ) ) ) ;
619
620
}
620
621
621
- /// A macro to create an array of [`MaybeUninit`]
622
+ /// Creates an array of [`MaybeUninit`].
622
623
///
623
624
/// This macro constructs an uninitialized array of the type `[MaybeUninit<K>; N]`.
624
625
///
@@ -645,7 +646,7 @@ macro_rules! uninitialized_array {
645
646
#[ cfg( rustdoc) ]
646
647
mod builtin {
647
648
648
- /// Unconditionally causes compilation to fail with the given error message when encountered.
649
+ /// Causes compilation to fail with the given error message when encountered.
649
650
///
650
651
/// For more information, see the documentation for [`std::compile_error!`].
651
652
///
@@ -657,7 +658,7 @@ mod builtin {
657
658
( $msg: expr, ) => ( { /* compiler built-in */ } ) ;
658
659
}
659
660
660
- /// The core macro for formatted string creation & output .
661
+ /// Constructs parameters for the other string-formatting macros .
661
662
///
662
663
/// For more information, see the documentation for [`std::format_args!`].
663
664
///
@@ -669,7 +670,7 @@ mod builtin {
669
670
( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } ) ;
670
671
}
671
672
672
- /// Inspect an environment variable at compile time.
673
+ /// Inspects an environment variable at compile time.
673
674
///
674
675
/// For more information, see the documentation for [`std::env!`].
675
676
///
@@ -681,7 +682,7 @@ mod builtin {
681
682
( $name: expr, ) => ( { /* compiler built-in */ } ) ;
682
683
}
683
684
684
- /// Optionally inspect an environment variable at compile time.
685
+ /// Optionally inspects an environment variable at compile time.
685
686
///
686
687
/// For more information, see the documentation for [`std::option_env!`].
687
688
///
@@ -693,7 +694,7 @@ mod builtin {
693
694
( $name: expr, ) => ( { /* compiler built-in */ } ) ;
694
695
}
695
696
696
- /// Concatenate identifiers into one identifier.
697
+ /// Concatenates identifiers into one identifier.
697
698
///
698
699
/// For more information, see the documentation for [`std::concat_idents!`].
699
700
///
@@ -717,7 +718,7 @@ mod builtin {
717
718
( $( $e: expr, ) * ) => ( { /* compiler built-in */ } ) ;
718
719
}
719
720
720
- /// A macro which expands to the line number on which it was invoked.
721
+ /// Expands to the line number on which it was invoked.
721
722
///
722
723
/// For more information, see the documentation for [`std::line!`].
723
724
///
@@ -726,7 +727,7 @@ mod builtin {
726
727
#[ rustc_doc_only_macro]
727
728
macro_rules! line { ( ) => ( { /* compiler built-in */ } ) }
728
729
729
- /// A macro which expands to the column number on which it was invoked.
730
+ /// Expands to the column number on which it was invoked.
730
731
///
731
732
/// For more information, see the documentation for [`std::column!`].
732
733
///
@@ -735,7 +736,7 @@ mod builtin {
735
736
#[ rustc_doc_only_macro]
736
737
macro_rules! column { ( ) => ( { /* compiler built-in */ } ) }
737
738
738
- /// A macro which expands to the file name from which it was invoked.
739
+ /// Expands to the file name from which it was invoked.
739
740
///
740
741
/// For more information, see the documentation for [`std::file!`].
741
742
///
@@ -744,7 +745,7 @@ mod builtin {
744
745
#[ rustc_doc_only_macro]
745
746
macro_rules! file { ( ) => ( { /* compiler built-in */ } ) }
746
747
747
- /// A macro which stringifies its arguments.
748
+ /// Stringifies its arguments.
748
749
///
749
750
/// For more information, see the documentation for [`std::stringify!`].
750
751
///
@@ -786,7 +787,7 @@ mod builtin {
786
787
#[ rustc_doc_only_macro]
787
788
macro_rules! module_path { ( ) => ( { /* compiler built-in */ } ) }
788
789
789
- /// Boolean evaluation of configuration flags, at compile-time.
790
+ /// Evaluates boolean combinations of configuration flags, at compile-time.
790
791
///
791
792
/// For more information, see the documentation for [`std::cfg!`].
792
793
///
@@ -795,7 +796,7 @@ mod builtin {
795
796
#[ rustc_doc_only_macro]
796
797
macro_rules! cfg { ( $( $cfg: tt) * ) => ( { /* compiler built-in */ } ) }
797
798
798
- /// Parse a file as an expression or an item according to the context.
799
+ /// Parses a file as an expression or an item according to the context.
799
800
///
800
801
/// For more information, see the documentation for [`std::include!`].
801
802
///
@@ -807,7 +808,7 @@ mod builtin {
807
808
( $file: expr, ) => ( { /* compiler built-in */ } ) ;
808
809
}
809
810
810
- /// Ensure that a boolean expression is `true` at runtime.
811
+ /// Asserts that a boolean expression is `true` at runtime.
811
812
///
812
813
/// For more information, see the documentation for [`std::assert!`].
813
814
///
0 commit comments