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
//! [`break`]: https://doc.rust-lang.org/std/keyword.break.html
//! [`continue`]: https://doc.rust-lang.org/std/keyword.continue.html
//! [`return`]: https://doc.rust-lang.org/std/keyword.return.html
//!
//! Declarative macros for common control-flow use cases such as [`break`], [`continue`], and [`return`].
//!
//! ---
//!
//! [`break_if!(...)`](crate::break_if)
//!
//! [`break`] from a loop if a given predicate evaluates to [`true`].
//!
//! Supports optionally providing a loop label to specify the loop from which to [`break`].
//! ```text
//! use flow_control::break_if;
//!
//! break_if!(predicate);
//! break_if!(predicate, label);
//! ```
//!
//! ---
//!
//! [`continue_if!(...)`](crate::continue_if)
//!
//! [`continue`] to the next iteration of a loop if a given predicate evaluates to [`true`].
//!
//! Supports optionally providing a loop label to specify the loop in which to [`continue`].
//! ```text
//! use flow_control::continue_if;
//!
//! continue_if!(predicate);
//! continue_if!(predicate, label);
//! ```
//!
//! ---
//!
//! [`return_if!(...)`](crate::return_if)
//!
//! [`return`] from a function if a given predicate evaluates to [`true`].
//!
//! Supports optionally providing a value to [`return`].
//! ```text
//! use flow_control::return_if;
//!
//! return_if!(predicate);
//! return_if!(predicate, value);
//! ```
//!
//! ---
//!
/// [`break`]: https://doc.rust-lang.org/std/keyword.break.html
///
/// [`break`] from a loop if a given predicate evaluates to [`true`].
///
/// Supports optionally providing a loop label to specify the loop from which to [`break`].
///
/// # Usage
///
/// [`break_if!`](crate::break_if)`(predicate)`
///
/// [`break_if!`](crate::break_if)`(predicate, label)`
///
/// # Examples
///
/// #### Predicate only
/// ```
/// use flow_control::break_if;
///
/// let mut v = Vec::new();
/// for outer_n in 1..3 {
/// for inner_n in 1..5 {
/// break_if!(inner_n == 3);
/// v.push((outer_n, inner_n));
/// }
/// }
///
/// assert_eq!(
/// v,
/// vec![
/// (1, 1), (1, 2),
/// (2, 1), (2, 2),
/// ]
/// );
/// ```
///
/// #### Predicate and label
/// ```
/// use flow_control::break_if;
///
/// let mut v = Vec::new();
/// 'outer: for outer_n in 1..3 {
/// for inner_n in 1..5 {
/// break_if!(inner_n == 3, 'outer);
/// v.push((outer_n, inner_n));
/// }
/// }
///
/// assert_eq!(
/// v,
/// vec![(1, 1), (1, 2)],
/// );
/// ```
#[macro_export]
macro_rules! break_if {
($predicate:expr) => {
if $predicate {
break;
}
};
($predicate:expr, $label:tt) => {
if $predicate {
break $label;
}
};
}
/// [`continue`]: https://doc.rust-lang.org/std/keyword.continue.html
///
/// [`continue`] to the next iteration of a loop if a given predicate evaluates to [`true`].
///
/// Supports optionally providing a loop label to specify the loop in which to [`continue`].
///
/// # Usage
///
/// [`continue_if!`](crate::continue_if)`(predicate)`
///
/// [`continue_if!`](crate::continue_if)`(predicate, label)`
///
/// # Examples
///
/// #### Predicate only
/// ```
/// use flow_control::continue_if;
///
/// let mut v = Vec::new();
/// for outer_n in 1..3 {
/// for inner_n in 1..5 {
/// continue_if!(inner_n == 3);
/// v.push((outer_n, inner_n));
/// }
/// }
///
/// assert_eq!(
/// v,
/// vec![
/// (1, 1), (1, 2), (1, 4),
/// (2, 1), (2, 2), (2, 4),
/// ]
/// );
/// ```
///
/// #### Predicate and label
/// ```
/// use flow_control::continue_if;
///
/// let mut v = Vec::new();
/// 'outer: for outer_n in 1..3 {
/// for inner_n in 1..5 {
/// continue_if!(inner_n == 3, 'outer);
/// v.push((outer_n, inner_n));
/// }
/// }
///
/// assert_eq!(
/// v,
/// vec![
/// (1, 1), (1, 2),
/// (2, 1), (2, 2),
/// ]
/// );
/// ```
#[macro_export]
macro_rules! continue_if {
($predicate:expr) => {
if $predicate {
continue;
}
};
($predicate:expr, $label:tt) => {
if $predicate {
continue $label;
}
};
}
/// [`return`]: https://doc.rust-lang.org/std/keyword.return.html
///
/// [`return`] from a function if a given predicate evaluates to [`true`].
///
/// Supports optionally providing a value to [`return`].
///
/// # Usage
///
/// [`return_if!`](crate::return_if)`(predicate)`
///
/// [`return_if!`](crate::return_if)`(predicate, value)`
///
/// # Examples
///
/// #### Default return
/// ```
/// use flow_control::return_if;
///
/// let mut v = Vec::new();
/// (|| {
/// for n in 1..10 {
/// return_if!(n == 5);
/// v.push(n)
/// }
/// })();
///
/// assert_eq!(v, vec![1, 2, 3, 4]);
/// ```
///
/// #### Return a specified value
/// ```
/// use flow_control::return_if;
///
/// let get_value = || {
/// for n in 1..10 {
/// return_if!(n == 5, "early return");
/// }
/// return "return after loop";
/// };
///
/// assert_eq!(get_value(), "early return");
/// ```
#[macro_export]
macro_rules! return_if {
($predicate:expr) => {
if $predicate {
return;
}
};
($predicate:expr, $ret:expr) => {
if $predicate {
return $ret;
}
};
}