Skip to main content

windowed_stats/experimental/
mod.rs

1// Copyright 2024 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Experimental features.
6//!
7//! This module hosts experimental APIs, most notably round-robin multi-resolution time series.
8
9mod vec1;
10
11pub mod clock;
12pub mod inspect;
13pub mod series;
14pub mod testing;
15
16pub use crate::experimental::vec1::Vec1;
17
18pub mod prelude {
19    pub use crate::experimental::clock::{DurationExt as _, QuantaExt as _, TimestampExt as _};
20    pub use crate::experimental::series::{TimeMatrixFold, TimeMatrixTick};
21}