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
//! A lazy computation with no effects.
//!
//! This module provides [lazy](fn.lazy.html) and [pure](fn.pure.html) function.
//! `lazy` creates a computation with no effects that just executes the passed function.
//! `pure` converts the given value into a pure computation.

use super::{Context, Effectful, Poll};

use std::pin::Pin;

/// A lazy computation with no effects
pub struct Lazy<F>(Option<F>);

impl<T, F> Effectful for Lazy<F>
where
    F: FnOnce() -> T,
{
    type Output = T;
    type Effect = !;

    /// Execute the computation
    ///
    /// # Panics
    /// Panics if the task is polled again after completion
    #[inline]
    fn poll(self: Pin<&mut Self>, _cx: &Context) -> Poll<Self::Output, Self::Effect> {
        unsafe {
            let this = self.get_unchecked_mut();
            Poll::Done(this.0.take().expect("poll after completion")())
        }
    }
}

/// Converts a thunk into a one-shot effectful computation
/// This function is usually used to convert closures into an effect handler
/// (which must be effectful)
#[inline]
pub fn lazy<T, F>(v: F) -> impl Effectful<Output = T, Effect = !>
where
    F: FnOnce() -> T,
{
    Lazy(Some(v))
}

/// Converts a value into a one-shot effectful computation that immediately resolves to said value
pub fn pure<T>(v: T) -> impl Effectful<Output = T, Effect = !> {
    lazy(move || v)
}