File tree 12 files changed +29
-98
lines changed
12 files changed +29
-98
lines changed Original file line number Diff line number Diff line change @@ -585,7 +585,6 @@ checksum = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
585
585
name = " core"
586
586
version = " 0.0.0"
587
587
dependencies = [
588
- " matches_macro" ,
589
588
" rand 0.7.0" ,
590
589
]
591
590
@@ -1901,10 +1900,6 @@ version = "0.1.8"
1901
1900
source = " registry+https://github.com/rust-lang/crates.io-index"
1902
1901
checksum = " 7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
1903
1902
1904
- [[package ]]
1905
- name = " matches_macro"
1906
- version = " 0.0.0"
1907
-
1908
1903
[[package ]]
1909
1904
name = " mdbook"
1910
1905
version = " 0.3.1"
Original file line number Diff line number Diff line change @@ -20,9 +20,6 @@ path = "../libcore/tests/lib.rs"
20
20
name = " corebenches"
21
21
path = " ../libcore/benches/lib.rs"
22
22
23
- [dependencies ]
24
- matches_macro = { path = " ../libmatches_macro" }
25
-
26
23
[dev-dependencies ]
27
24
rand = " 0.7"
28
25
Original file line number Diff line number Diff line change 85
85
#![ feature( iter_once_with) ]
86
86
#![ feature( lang_items) ]
87
87
#![ feature( link_llvm_intrinsics) ]
88
- #![ feature( matches_macro) ]
89
88
#![ feature( never_type) ]
90
89
#![ feature( nll) ]
91
90
#![ feature( exhaustive_patterns) ]
135
134
use prelude:: v1:: * ;
136
135
137
136
#[ macro_use]
138
- #[ path = "macros.rs" ]
139
- mod prelude_macros;
140
-
141
- /// Macros that are not in the prelude and need to be imported explicitly
142
- #[ unstable( feature = "matches_macro" , issue = "0" ) ]
143
- pub mod macros {
144
- #[ unstable( feature = "matches_macro" , issue = "0" ) ]
145
- #[ doc( inline) ]
146
- pub use matches_macro:: matches;
147
- }
137
+ mod macros;
148
138
149
139
#[ macro_use]
150
140
mod internal_macros;
Original file line number Diff line number Diff line change @@ -238,6 +238,30 @@ macro_rules! debug_assert_ne {
238
238
( $( $arg: tt) * ) => ( if $crate:: cfg!( debug_assertions) { $crate:: assert_ne!( $( $arg) * ) ; } )
239
239
}
240
240
241
+ /// Returns whether the given expression matches (any of) the given pattern(s).
242
+ ///
243
+ /// # Examples
244
+ ///
245
+ /// ```
246
+ /// #![feature(matches_macro)]
247
+ ///
248
+ /// let foo = 'f';
249
+ /// assert!(matches!(foo, 'A'..='Z' | 'a'..='z'));
250
+ ///
251
+ /// let bar = Some(4);
252
+ /// assert!(matches!(bar, Some(x) if x > 2));
253
+ /// ```
254
+ #[ macro_export]
255
+ #[ unstable( feature = "matches_macro" , issue = "0" ) ]
256
+ macro_rules! matches {
257
+ ( $expression: expr, $( $pattern: pat ) |+ $( if $guard: expr ) ?) => {
258
+ match $expression {
259
+ $( $pattern ) |+ $( if $guard ) ? => true ,
260
+ _ => false
261
+ }
262
+ }
263
+ }
264
+
241
265
/// Unwraps a result or propagates its error.
242
266
///
243
267
/// The `?` operator was added to replace `try!` and should be used instead.
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ pub use crate::{
82
82
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
83
83
#[ allow( deprecated) ]
84
84
#[ doc( no_inline) ]
85
- pub use crate :: prelude_macros :: builtin:: {
85
+ pub use crate :: macros :: builtin:: {
86
86
RustcDecodable ,
87
87
RustcEncodable ,
88
88
bench,
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -354,16 +354,7 @@ extern crate cfg_if;
354
354
355
355
// The standard macros that are not built-in to the compiler.
356
356
#[ macro_use]
357
- #[ path = "macros.rs" ]
358
- mod prelude_macros;
359
-
360
- /// Macros that are not in the prelude and need to be imported explicitly
361
- #[ unstable( feature = "matches_macro" , issue = "0" ) ]
362
- pub mod macros {
363
- #[ unstable( feature = "matches_macro" , issue = "0" ) ]
364
- #[ doc( inline) ]
365
- pub use core:: macros:: matches;
366
- }
357
+ mod macros;
367
358
368
359
// The Rust prelude
369
360
pub mod prelude;
@@ -537,6 +528,7 @@ pub use core::{
537
528
writeln,
538
529
// Unstable
539
530
todo,
531
+ matches,
540
532
} ;
541
533
542
534
// Re-export built-in macros defined through libcore.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ LL | macro_rules! unknown { () => () }
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
6
7
7
error: cannot find a built-in macro with name `line`
8
- --> <::core::prelude_macros ::builtin::line macros>:1:1
8
+ --> <::core::macros ::builtin::line macros>:1:1
9
9
|
10
10
LL | () => { }
11
11
| ^^^^^^^^^
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments