1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Iterators over text in morse code.
//!
//! ```rust
//! fn wait_for(duration: u8) {
//! // ...
//! }
//! fn beep_for(duration: u8) {
//! // ...
//! }
//!
//! for action in small_morse::encode("Hello in morse code!") {
//! if action.state == small_morse::State::On {
//! beep_for(action.duration);
//! } else {
//! wait_for(action.duration);
//! }
//! }
//! ```
//!
//! This library is for encoding text into morse code (not the other way around yet).
//!
//! It works without the standard library.
pub
pub use crate;
/// Creates an iterator over the `Action`s necessary to send the message
pub