ray_once

Macro ray_once 

Source
macro_rules! ray_once {
    () => { ... };
    ($($value:expr),+ $(,)?) => { ... };
}
Expand description

Send values to Ray only once from the callsite.

use ray::ray_once;

ray_once!("only once");