1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
/*! (dev) `twist!` implementation

We also define some macros in this module, but since they're macros, they're accessible from the crate root:
- (dev) `__impl_twist`
- `twist!`
- `next_if!` and `last_if!`

We also reexport all the types in this module for convenience.
*/

/** (dev) Error message when trying to break with a value in a non-`loop` loop */
pub const BREAKVAL_IN_NOT_LOOP :&str = "\
	error[E0571]: `break` with value is invalid in a `for` or `while` loop. \
	Use Break instead of BreakVal in `twist!` expression \
	or use `twist!` with the `-val` flag.";

/** (dev) Error message when trying to break without a value in a `twist -val` statement */
pub const BREAK_WITHOUT_VAL :&str = "\
	error[E0308]: mismatched types. \
	Breaking without a value when using `twist -val`. \
	Use BreakVal instead of Break, or use `twist!` without `-val`";

/** (dev) Error message when trying to break with the wrong type in a `twist -val` statement */
pub const BAD_BREAKVAL_TYPE :&str = "\
	error[E0308]: mismatched types. \
	Looping::BreakVal has a value type different from the loop it's breaking from. \
	Check you're breaking from the right loop, or use Break instead of BreakVal.";

/** (dev) Type to provide a nicer error message when trying to breakval from a non-`loop` loop

This type is not meant to be constructed, except by the `resume!`, `next!` and `last!` macros,
as well as the single breakpoint non-`val` forms of `twist!`.

This is because its only purpose is to give a useful error message when it's a sinple case.
In other cases, the compiler will emit a generic type mismatch or "cannot break with value" error.

See `rustc --explain E0571` for what the compiler is warning against.
*/
#[allow(non_camel_case_types)]
pub enum Error0571__Tried_to_break_with_value_using_twist_without_val_flag__Use_Break_instead_of_BreakVal_or_add_the_dash_val_flag_to_twist{}

/** (dev) Short name for `Error0571__Tr...twist`

Used in `twist!`. This is to play nice with `rustfmt` or `cargo expand`, so that it doesn't just give up formatting
because the type name is too long.
*/
pub type BreakValError = Error0571__Tried_to_break_with_value_using_twist_without_val_flag__Use_Break_instead_of_BreakVal_or_add_the_dash_val_flag_to_twist;

/** Different loop control signals that [`twist!`] understands

We map `break`, `break $value` and `continue` to types.
*/
#[derive(PartialEq, Debug, Clone)]
pub enum Looping<T, B> {
	/// Resume loop execution with value of type T
	Resume(T),
	/// Break a loop selected by `label`
	Break {
		/// The index of the label of the loop to break from. `None` means innermost loop
		label: Option<usize>
	},
	/// Break a loop selected by `label` with a value of `value`
	BreakVal {
		/// The index of the label of the loop to break from. `None` means innermost loop
		label: Option<usize>,
		/// The value to break with
		value: B
	},
	/// Skip to the next iteration of the loop selected by `label`
	Continue {
		/// The index of the label of the loop to continue from. `None` means innermost loop
		label: Option<usize>
	}
}

/** (dev) Macro required by `twist!`

Mostly contains step by step (@prefix) parsing for all the entrypoints in `twist!`. When it's done,
it calls `twist!` with the final processed values.

# Overview of the steps

When breaking from a single loop, `@parse-map` parse the right-hand part as either an expression, or
an expression `=>` another expression (which is the mapping function).

When breaking from multiple loop labels, there are multiple steps:
- `@label-parse` separates the labels from the right-hand expressions
- `@label-expr` parses the right-hand expressions as either a single expression, or
  an expression `=>` the mapping function
- `@label-labels` parses each comma-separated label of the format `$label` or `$label : $type`
- `@label-box` moves the collected data for breakvals into the right slot, to indicate if
  we need to unbox the values or not

# Input and Output

The syntax for calling `@label-parse` is the following:
```text
(("pass") -> ("break") () ()) [$($tokens)*] ->
  │          │         │  │      └ The tokens that make up the label list and the expression
  │          ├─────────┴──┘        eg. `'a 'b | 1 + 1`
  │          └ Only one the three flags should be filled. In order:
  │            - "break" if the innermost loop can be broken normally
  │            - the type of the innermost loop break value if we break with a value
  │            - the type of the boxed innermost loop break value, if we break
  │              with Box<dyn Any>
  └ "unbox" if we unbox the breakvals, otherwise "pass"
```

We use "flags" to simulate booleans with empty parenthese or non-empty parentheses with
token trees inside. Because we can only conditionally do something when "it's full",
we need to have a slot for each case.

We call `twist! @boxed` with the following syntax:

```text
($($flag)*) ($($bk)*) [ ($($bv)*) () ] $e
    │           │       │         │    └ The expression to match on
    │           │       ├─────────┘
    │           │       └ Only one of these two slots should be filled.
    │           │         The left one is filled if we breakval normally
    │           │         The right one is filled if we unbox the value before breakval'ing
    │           └ The normal breaks
    └ The same three flags from the input
```

See inline documentation for brief explanations of what each `@step` does.
*/
#[macro_export]
macro_rules! __impl_twist {
	/* For @single */

	// Parse the right-hand side
	// ...as an expression => mapping-function
	( @parse-map [$($bk:tt)*] [$($bv:tt)*] ($e:expr => $f:expr) ) => {
		$crate::twist! { @single [$($bk)*] [$($bv)*] ($crate::Judge::into_moral($e).resume_or_else($f)) }
	};
	// ...as an expression
	( @parse-map [$($bk:tt)*] [$($bv:tt)*] ($e:expr) ) => {
		$crate::twist! { @single [$($bk)*] [$($bv)*] ($e) }
	};
	// ...or fail
	( @parse-map [$($bk:tt)*] [$($bv:tt)*] ($($tokens:tt)*) ) => {
		compile_error!(concat!(
			"Expected either `$e` or `$e => $f` on the right-hand side, got: ",
			stringify!($($tokens)*)))
	};

	/* For @boxed */

	// Separate the labels from the expression by getting everything before `|`
	// ≪ (<$flag>*) [ $input ] -> ≫
	// → ≪ (<$flag>*) [ <$expr-token>* ] -> <$label-token>* ≫
	( @label-parse ($($flag:tt)*) [ | $($rest:tt)* ] -> $($l:tt)* ) => {
		$crate::__impl_twist! { @label-expr ($($flag)*) [$($rest)*] -> $($l)* }
	};
	( @label-parse ($($flag:tt)*) [ $token:tt $($rest:tt)* ] -> $($l:tt)* ) => {
		$crate::__impl_twist! { @label-parse ($($flag)*) [$($rest)*] -> $($l)* $token }
	};
	// There is no `|`: There's only an expression
	( @label-parse ($($flag:tt)*) [ ] -> $($rest:tt)* ) => {
		compile_error!("Missing `|` separator after labels in `twist! -label` macro invocation. Add labels, or use `twist!` without `-label`.")
	};
	
	// Parse the expression, or fail
	// ≪ (<$flag>*) [ <$expr-token>* ] -> <$label-token>* ≫
	// → ≪ (<$flag>*) 0, [ <$label-token>* , ] -> [() ()] <$expr> ≫
	// ...as `$e
	( @label-expr ($($flag:tt)*) [ $e:expr ] -> $($l:tt)* ) => {
		// We add an extra comma, so that every label ends with a comma, simplifies parsing
		$crate::__impl_twist! { @label-labels ($($flag)*) 0, [$($l)* ,] -> [() ()] $e }
	};
	// ...as `$e => $f`
	( @label-expr ($($flag:tt)*) [ $e:expr => $f:expr ] -> $($l:tt)* ) => {
		// We add an extra comma, so that every label ends with a comma, simplifies parsing
		$crate::__impl_twist! { @label-labels ($($flag)*) 0, [$($l)* ,] -> [() ()] $crate::Judge::into_moral($e).resume_or_else($f) }
	};
	// ...or fail
	( @label-expr ($($flag:tt)*) [ $($rest:tt)* ] $($whatever:tt)* ) => {
		compile_error!(concat!("This failed to parse as an expression: ", stringify!($($rest)*)))
	};
	
	// Parse labels (eg. `'a` or `'a: i32`) separated with commas and separate those that
	//   break with values and those that don't. Break = $bk and BreakVal = $bv
	// ≪ (<$flag>*) 0, [ <$label-token>* , ] -> [() ()] <$expr> ≫
	// → ≪ (<$flag>*) (<$bk>*) (<$bv>*) $expr ≫
	// Nothing left to parse
	( @label-labels ($($flag:tt)*) $count:expr, [] -> [($($bk:tt)*) ($($bv:tt)*)] $e:expr ) => {
		$crate::__impl_twist! { @label-box ($($flag)*) ($($bk)*) ($($bv)*) $e }
	};
	// Parse `'a: i32,`
	( @label-labels ($($flag:tt)*) $count:expr, [ $label:lifetime : $type:ty , $($rest:tt)* ] -> [($($bk:tt)*) ($($bv:tt)*)] $e:expr ) => {
		$crate::__impl_twist! { @label-labels ($($flag)*) $count + 1, [$($rest)*] -> [($($bk)*) ( $($bv)* ($count, $label, $type) )] $e }
	};
	// Parse `'a,`
	( @label-labels ($($flag:tt)*) $count:expr, [ $label:lifetime , $($rest:tt)* ] -> [($($bk:tt)*) ($($bv:tt)*)] $e:expr ) => {
		$crate::__impl_twist! { @label-labels ($($flag)*) $count + 1, [$($rest)*] -> [( $($bk)* ($count, $label) ) ($($bv)*)] $e }
	};
	// Bad label syntax
	( @label-labels ($($flag:tt)*) $count:expr, [ $($rest:tt)* ] -> [($($bk:tt)*) ($($bv:tt)*)] $e:expr ) => {
		compile_error!(concat!("Bad label syntax: ", stringify!($($rest)*)))
	};

	// Apply the box flag onto $bv so we can differentiate when consuming it
	// ≪ ( ($box) -> <$flag>*) (<$bk>*) (<$bv>*) $expr ≫
	// → ≪ (<$flag>*)  (<$bk>*) [ (<$bv>*) (<$bx>*) ] $expr ≫
	( @label-box ( ("unbox") -> $($flag:tt)* ) ($($bk:tt)*) ($($bv:tt)*) $e:expr ) => {
		twist! { @boxed ($($flag)*) ($($bk)*) [ () ($($bv)*) ] $e }
	};
	( @label-box ( ("pass") -> $($flag:tt)* ) ($($bk:tt)*) ($($bv:tt)*) $e:expr ) => {
		twist! { @boxed ($($flag)*) ($($bk)*) [ ($($bv)*) () ] $e }
	};
}

/** Breaks loops (or not) based on the [`Looping`] variant

# Usage

The general syntax is the following:

```text
// With $e an expression of type `Looping`
twist! { [-val] $e }
twist! { [-val] -with $label | $e }
twist! { [-box] [-val $type,] -label <$label [: $type]>,* | $e }

// Same, but with $e implementing Judge, and $f a function that maps the Bad value to Looping
twist! { [-val] $e => $f }
twist! { [-val] -with $label | $e => $f }
twist! { [-box] [-val $type,] -label <$label [: $type]>,* | $e => $f }
```

## Use cases

If you're breaking from the current loop, use one of the following

```text
twist! { $e }      // Usual case
twist! { -val $e } // If you're breaking with a value (`loop` loop)
```

If you're breaking a labeled loop:

```text
twist! { -with 'label | $e }      // Normal break from the labeled loop
twist! { -val -with 'label | $e } // If you're breaking the labeled loop with a value
```

If you're breaking from multiple loops:

```text
twist! { -label 'a, 'b | $e } // Normal break for loops 'a, 'b and innermost
```

If you're breaking from multiple loops and can break with the *same value type*:

```text
// If the innermost loop is a normal break
twist! { -label 'a: i32, 'b, 'c: i32 | $e }
// If the innermost loop breaks with a value (the type is mandatory)
twist! { -val i32, -label 'a:i32, 'b | $e }
```

If you're breaking from multiple loops with multiple types by using `Box<dyn Any>` as the value type:

```text
// If the innermost loop is a normal break
twist! { -box -label 'a: i32, 'b: String | $e }
// If the innermost loop breaks with a value
twist! { -box -val i32, -label 'a, 'b: String | $e }
```

If you want to **extract a value** (eg. `Result` or `Option`) and break/continue otherwise:

```text
twist! { $e => $f }
// Or any of the previous ones with `$e => $f` instead of `$e`
```

with $e your value (that implements Judge) and $f the mapping function from the Bad type
to a `Looping` value.

# Description

`twist!` takes an expression of `Looping` type, and `break`s, `continue`s or resume the loop
execution based on the `Looping` variant. There are various flags that control which loop are
concerned, and what value type to break with (for `loop` loops).

Normally, you can only break with a single type because it is the `B` parameter for
`Looping::<_ B>`. But if we use `Box<dyn Any>`, a trait object, and then we downcast to the
correct concrete type, we can break with multiple types.

The `-box` option tells `twist!` to expect a break type of `Box<dyn Any>` and to attempt to
downcast to the type specified by `-val` or `-label` before breaking the loop.

The mapping syntax `$e => $f` is used to simplify "good value" handling in loops. `$e` implements
Judge, and `$f` maps the bad type of `$e` to a `Looping` value.

For example, you generally want to skip the current loop iteration if you get an `Err(_)`
from a function call. To do so, you would either use `if let` and
have the happy path indented in the `if let` body, or you could add the following match
statement before the rest of your code:

```
# fn try_get_value () -> Result<i32, ()> { Ok(1) }
# loop {
let wanted_value = match try_get_value() {
    Ok(v) => v,
    Err(_) => continue,
};
# break;
# }
```

The mapping syntax lets you simplify that "guard" statement to the following:

```
# use tear::extra::*;
# fn try_get_value () -> Result<i32, ()> { Ok(1) }
# loop {
let wanted_value = twist! { try_get_value() => |_| next!() };
# break;
# }
```

## Errors

### Compile failure

A common error (at least for me) is to forget that you need to specify if the innermost loop
breaks with a value or not, even if you don't do anything with it.
Similarly, you always need to specify the types of the loop labels.

### Panics
This **will panic if** you use the wrong loop label index; if you try to break a
non-`loop` loop with a value; or if you try to break a `loop`-loop that expects a value,
without a value

# Examples

*All example bring `twist` and `Looping` into scope.*

An infinite loop that immediately gets broken.

```
# use tear::{twist, Looping};
loop {
    twist! { Looping::Break { label: None } }
}
```

Breaking a loop with a value with the `-val` switch.

```
# use tear::{twist, Looping};
let x = loop {
    twist! { -val Looping::BreakVal { label: None, value: 8 } }
};
assert_eq![ x, 8 ];
```

Breaking a labeled loop. `-with` sets the loop on which we act.

```
# use tear::{twist, Looping};
'a: loop {
    loop {
        twist! { -with 'a | Looping::Break { label: None } }
    }
}
```

Breaking multiple loop with different types with `-box`. Labels are counted from 0, so `Some(0)`
refers to `'a: String`. The second loop also breaks with a value type of `i32`, specified in
`twist!` as `-val i32,`.

```
# use tear::{twist, Looping};
use tear::anybox;

let x = 'a: loop {
    let _ = loop {
        twist! { -box -val i32, -label 'a: String |
            Looping::BreakVal { label: Some(0), value: anybox!("a".to_string()) }
        }
    };
};
assert_eq![ x, "a".to_string() ];
```

See more barebones examples for breaking multiple loops in `test/label.rs`.

# See also

- The [`last!`], [`next!`] and [`resume!`] utility macros.
- The [`anybox!`] macro when the expression is of type `Box<dyn Any>` and we unbox it

# Developer docs

See inline comments for more information.

Most patterns of the macro are the entrypoints for 2 "templated" implementations for
"single loop break" (`@single`) and "labeled loop break" (`@boxed`).

## `@boxed`: Breaking from multiple loops

The non-`box` versions can only break with a single value type because you can only choose one type
to be the `BreakVal` value type. To circumvent this with the `box` versions, we expect
a `Box<dyn Any>` value that we downcast to the right type.

## `@single`: Breaking from a single loop

When breaking from a single loop without a value, we set the BreakVal type of `Looping`
to `BreakValError`. If the user tries to break with a value, the program will fail to compile
because the types are different. It should then display the full name of `BreakValError`
(which is an error message) in the error message.
*/
#[macro_export]
macro_rules! twist {
	/* When we break from multiple loops */
	
	// Handle a Looping object that can break with labels, and break with a value
	( -label $($tokens:tt)* ) => {
		$crate::__impl_twist! { @label-parse (("pass") -> ("break") () ()) [$($tokens)*] -> }
	};
	// The innermost loop breaks with a value
	( -val $type:ty, -label $($tokens:tt)* ) => {
		$crate::__impl_twist! { @label-parse (("pass") -> () ($type) ()) [$($tokens)*] -> }
	};
	// Same thing, but we unbox the breakval
	( -box -label $($tokens:tt)* ) => {
		$crate::__impl_twist! { @label-parse (("unbox") -> ("break") () ()) [$($tokens)*] -> }
	};
	( -box -val $type:ty, -label $($tokens:tt)* ) => {
		$crate::__impl_twist! { @label-parse (("unbox") -> () () ($type)) [$($tokens)*] -> }
	};

	// Generic implementation for when we handle loop labels
	// We handle Break and BreakVal and boxed Breakval for the innermost loop (3 cases)
	// Syntax: ($($flags:tt)*) ($($bk:tt)*) [( ) ( )] $e:expr
	//             │               │          │   └ If we unbox, fill with $( ($count, $label, $type) )*
	//             │               │          └ If we don't unbox, fill with $( ($count, $label, $type) )*
	//             │               └ Breaks of ($count, $label)
	//             └ "Flags": ($bk) ($bv) ($bx). Whether the innermost loop breaks, breakvals or breakval and unboxes
	//               Specify the usable type for $bv and $bx
	( @boxed ( ($($bk:tt)?) ($($bv:ty)?) ($($bx:ty)?) )         // Flags
		( $( ($c:expr, $l:lifetime) )* )                        // Breaks
		[ ($( ($count:expr,  $label:lifetime,  $type:ty)  )*)   // Normal breakvals
		  ($( ($bcount:expr, $blabel:lifetime, $btype:ty) )*) ] // Boxed breakvals
		$e:expr
	) => {
		match $e {
			$crate::Looping::Resume(v) => v,
			$( $crate::Looping::Break { label: None } => { $crate::__unit!($bk); break; }, )?
			$( $crate::Looping::Break { label: None } => { $crate::__unit!($bv); panic!("{}", $crate::BREAK_WITHOUT_VAL) }, )?
			$( $crate::Looping::Break { label: None } => { $crate::__unit!($bx); panic!("{}", $crate::BREAK_WITHOUT_VAL) }, )?
			$crate::Looping::Break { label: Some(l) } => {
				match l {
					$( x if x == $c => { break $l; }, )*
					_ => panic!("Invalid label index in Looping::Break object."),
				};
			},
			$crate::Looping::Continue { label: None } => continue,
			$crate::Looping::Continue { label: Some(l) } => {
				match l {
					$( x if x == $c => { continue $l; }, )*
					$( x if x == $count => { continue $label; }, )*
					$( x if x == $bcount => { continue $blabel; }, )*
					_ => panic!("Invalid label index in Looping::Continue object."),
				};
			},
			$( $crate::Looping::BreakVal { label: None, .. } => { $crate::__unit!($bk); panic!("{}", $crate::BREAKVAL_IN_NOT_LOOP); }, )?
			$( $crate::Looping::BreakVal { label: None, value: v } => { $crate::__unit!($bv); break v; }, )?
			$( $crate::Looping::BreakVal { label: None, value: v } => { // Unbox version
				match v.downcast::<$bx>() {
					Ok(v) => { break *v; },
					_ => panic!("At label None with type {}: {}", stringify!($bx), $crate::BAD_BREAKVAL_TYPE),
				};
			}, )?
			// Add explicit breakval type when it can't be infered by the labeled breaksvals
			// (because there aren't any) but we do breakval the innermost loop
			$crate::Looping::BreakVal $(::<_, $bv> )? { label: Some(l), value: v } => {
				match l {
					$( x if x == $count => { break $label v; }, )*
					$( x if x == $bcount => { // Unbox version
						match v.downcast::<$btype>() {
							Ok(v) => { break $blabel *v; }, // We got a ref so dereference it
							_ => panic!("At label {} with type {}: {}", stringify!($blabel), stringify!($btype), $crate::BAD_BREAKVAL_TYPE),
						}
					}, )*
					_ => panic!("Invalid label index in Looping::BreakVal object."),
				};
			},
		};
	};
	
	/* When we just break from a single loop */

	// Generic implementation for when we break from a single loop
	// Syntax is [ ] [ ] ($e)
	//            │   └ If breaking with value, fill with ("breakval") ( $label? )
	//            └ If breaking without value, fill with ("break") ( $label? )
	( @single
		[$( ($breaker:tt) ($($label:lifetime)?) )?]   // Break
		[$( ($breakval:tt) ($($vlabel:lifetime)?) )?] // BreakVal
		($e:expr)
	) => {
		match $e {
			$( _ if $crate::__bool!($breaker)  => unreachable!(), $crate::Looping::Resume::<_, $crate::BreakValError>(v) => v, )?
			$( _ if $crate::__bool!($breakval) => unreachable!(), $crate::Looping::Resume(v) => v, )?
			$( _ if $crate::__bool!($breaker)  => unreachable!(), $crate::Looping::Break { .. } => break $($label)?, )?
			$( _ if $crate::__bool!($breakval) => unreachable!(), $crate::Looping::Break { .. } => panic!("{}", $crate::BREAK_WITHOUT_VAL), )?
			$crate::Looping::Continue { .. } => continue $($($label)?)? $($($vlabel)?)?,
			$( _ if $crate::__bool!($breaker)  => unreachable!(), $crate::Looping::BreakVal { .. } => panic!("{}", $crate::BREAKVAL_IN_NOT_LOOP), )?
			$( _ if $crate::__bool!($breakval) => unreachable!(), $crate::Looping::BreakVal { value: v, .. } => break $($vlabel)? v, )?
		}
	};

	// Handle a Looping object that breaks a specific label
	( -with $l:lifetime | $($tokens:tt)* ) => {
		$crate::__impl_twist! { @parse-map [("break") ($l)] [] ($($tokens)*) }
	};
	// Handle a Looping object that can break with a value for a specific label
	( -val -with $l:lifetime | $($tokens:tt)* ) => {
		$crate::__impl_twist! { @parse-map [] [("breakval") ($l)] ($($tokens)*) }
	};
	// Handle a Looping object that can break with a value
	( -val $($tokens:tt)* ) => {
		$crate::__impl_twist! { @parse-map [] [("breakval") ()] ($($tokens)*) }
	};
	// Handle a Looping object
	( $($tokens:tt)* ) => {
		$crate::__impl_twist! { @parse-map [("break") ()] [] ($($tokens)*) }
	};
}

/** Explicit loop continue

# Description

```text
next_if! { $cond,
    $body
}
```

With a pattern:
```text
next_if! { let $pat = $expr,
    $body
}
```

# Example

```
# use tear::prelude::*;
let mut sum = 0;
for v in 0..=5 {
    next_if! { v % 2 == 0 }
    sum += v;
}
assert_eq![ sum, 9 ];
```

# See also
- [`tear_if!`] with examples
- [`last_if!`]
*/
#[macro_export]
macro_rules! next_if {
	// Normal next_if! { $cond, $block }
	( $c:expr $( , $($b:tt)* )? ) => {
		$crate::twist! {
			if $c {
				{ $($($b)*)? };
				$crate::next!()
			} else {
				$crate::resume!(())
			}
		}
	};
	// Handle next_if! { let … }
	( let $p:pat = $e:expr $( , $($b:tt)* )? ) => {
		$crate::twist! {
			if let $p = $e {
				{ $($($b)*)? };
				$crate::next!()
			} else {
				$crate::resume!(())
			}
		}
	};
}

/** Explicit loop break

# Description

```text
last_if! { $cond,
    $body
}
```

With a pattern:
```text
last_if! { let $pat = $expr,
    $body
}
```

# Example

```
# use tear::prelude::*;
let mut sum = 0;
for v in 0..=10 {
    last_if! { sum > 10 }
    sum += v;
}
assert_eq![ sum, 15 ];
```

# See also
- [`tear_if!`] with examples
- [`next_if!`]
*/
#[macro_export]
macro_rules! last_if {
	// Normal last_if! { $cond, $block }
	( $c:expr $( , $($b:tt)* )? ) => {
		$crate::twist! {
			if $c {
				{ $($($b)*)? };
				$crate::last!()
			} else {
				$crate::resume!(())
			}
		}
	};
	// Handle last_if! { let … }
	( let $p:pat = $e:expr $( , $($b:tt)* )? ) => {
		$crate::twist! {
			if let $p = $e {
				{ $($($b)*)? };
				$crate::last!()
			} else {
				$crate::resume!(())
			}
		}
	};
}