floop 0.1.2

A more convenient and less error prone replacement for loop `{ select! { .. }}`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// use smol::Timer;
// use floop::floop;

// // this will need to be manually commented and uncommented until `trybuild` works again.
// #[test]
// fn manual_footgun_detector_test() {
//     let mut block = Timer::never();
//     let future = floop!{
//         biased
//         _blarg in &mut block => {}
//     };
//     drop(future);
// }