rill-core 0.5.0-beta.3

Core foundation for the Rill ecosystem — traits, math, buffers, queues, time, macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Deprecated — use the `algorithm` module instead.
//!
//! This module was renamed to `algorithm` and split into:
//! - `Action`  → `Algorithm` (renamed, deprecation alias)
//! - `ActionContext` → kept as-is (re-exported from `algorithm`)

#![allow(deprecated)]

/// Alias for backward compatibility — use `Algorithm` instead.
#[deprecated(
    since = "0.4.0",
    note = "renamed to `Algorithm` — see the `algorithm` module"
)]
pub use super::algorithm::Algorithm as Action;

/// Re-exported from the `algorithm` module.
pub use super::algorithm::ActionContext;