dvcompute 2.0.0

Discrete event simulation library (sequential simulation)
Documentation
// Copyright (c) 2020-2022  David Sorokin <davsor@mail.ru>, based in Yoshkar-Ola, Russia
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

use crate::simulation::parameter::*;

use dvcompute_utils::grc::Grc;

/// It represents the source of `Parameter` computations.
#[must_use = "computations are lazy and do nothing unless to be run"]
#[derive(Clone)]
pub struct ParameterFn<T> where T: 'static {
    gen: Grc<Box<dyn Fn() -> ParameterBox<T>>>
}

impl<T> ParameterFn<T> {

    /// Create a new source of computations.
    #[inline]
    pub fn new<F, M>(f: F) -> Self
        where F: Fn() -> M + 'static,
              M: Parameter<Item = T> + 'static
    {
        ParameterFn {
            gen: Grc::new(Box::new(move || { f().into_boxed() }))
        }
    }

    /// Get the next computation.
    #[inline]
    pub fn next(&self) -> ParameterBox<T> {
        (self.gen)()
    }
}