signalo

Crates.iosignalo
lib.rssignalo
version0.7.0
created_at2018-05-02 11:07:27.538769+00
updated_at2026-01-18 00:20:16.049504+00
descriptionA DSP toolbox with focus on embedded environments.
homepage
repositoryhttps://github.com/signalo/signalo
max_upload_size
id63401
size331,171
Vincent Esche (regexident)

documentation

README

jumbotron

signalo

Synopsis

A DSP toolbox with focus on embedded environments.

Signalo provides the basic building-blocks for low-level real-time filtering pipelines,
based on zero-cost, zero-allocation abstractions, which can be assembled via composition.

About

Signalo basically consists of four basic traits and implementations thereof:

  • Source<T>: () -> T
  • Filter<T>: T -> U
  • Sink<T>: T -> ()
  • Finalize: () -> U

Roughly signalo's traits are equivalent in semantics to the following stdlib APIs:

  • Source<…>core::iter::Iterator<…>
  • Filter<…>core::iter::Map<…>
  • Sink<…> + FinalizeIterator::fold(…)
  • Filter<…> + Finalizecore::iter::Scan<…>

Types implementing Finalize usually also implement either Filter<T> or Sink<T>.

Signalo provides the basic building-blocks for low-level real-time filtering pipelines, which can be assembled via composition either manually or through the use of pipes.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the MPL-2.0 – see the LICENSE.md file for details.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you to the licensor shall be under the terms and conditions of this license, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with licensor regarding such contributions.

Commit count: 361

cargo fmt