mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 02:48:34 +00:00
Rename IIFE to try
Too good of an idea to forget
This commit is contained in:
parent
cc9e92857b
commit
beb0af9763
1 changed files with 2 additions and 2 deletions
|
@ -352,7 +352,7 @@ pub fn unzip_option<T, U>(option: Option<(T, U)>) -> (Option<T>, Option<U>) {
|
|||
/// Immediately invoked function expression. Good for using the ? operator
|
||||
/// in functions which do not return an Option or Result
|
||||
#[macro_export]
|
||||
macro_rules! iife {
|
||||
macro_rules! try {
|
||||
($block:block) => {
|
||||
(|| $block)()
|
||||
};
|
||||
|
@ -361,7 +361,7 @@ macro_rules! iife {
|
|||
/// Async Immediately invoked function expression. Good for using the ? operator
|
||||
/// in functions which do not return an Option or Result. Async version of above
|
||||
#[macro_export]
|
||||
macro_rules! async_iife {
|
||||
macro_rules! async_try {
|
||||
($block:block) => {
|
||||
(|| async move { $block })()
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue