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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![warn(missing_docs)]
#![feature(step_trait)]

//! # step-dict
//!
//! ## Usage
//!
//! ```
//! use step_dict::Word;
//!
//! for word in Word("rust")..Word("rusty") {
//!     println!("{}", word);
//! }
//! ```

use std::{
    fmt::{self, Display, Formatter},
    iter::Step,
};

const WORDS: &[&str] = &include!("words_alpha.txt");

/// A word in the dictionary.
///
/// # Examples
///
/// ```
/// use step_dict::Word;
///
/// for word in Word("rust")..Word("rusty") {
///     println!("{}", word);
/// }
/// ```
///
/// # Panics
///
/// This will panic if the word is not in the dictionary.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct Word<'a>(pub &'a str);

impl Step for Word<'_> {
    fn steps_between(&Self(start): &Self, &Self(end): &Self) -> Option<usize> {
        let start = WORDS
            .binary_search(&start)
            .expect("start should be in WORDS");
        let end = WORDS.binary_search(&end).expect("end should be in WORDS");
        Some(end - start)
    }

    fn forward_checked(Self(start): Self, count: usize) -> Option<Self> {
        let start = WORDS
            .binary_search(&start)
            .expect("start, should be in WORDS");
        let end = start + count;

        WORDS.get(end).map(|s| Self(s))
    }

    fn backward_checked(Self(start): Self, count: usize) -> Option<Self> {
        let start = WORDS
            .binary_search(&start)
            .expect("start should be in WORDS");
        let end = start - count;

        WORDS.get(end).map(|s| Self(s))
    }
}

impl Display for Word<'_> {
    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn sus() {
        let mut iter = Word("among")..=Word("us");

        // funny
        assert_eq!(iter.next(), Some(Word("among")));

        // unfunny
        assert_eq!(iter.next(), Some(Word("amongst")));
        assert_eq!(iter.next(), Some(Word("amontillado")));

        // funny
        assert_eq!(iter.nth(428_210), Some(Word("sus")));
        assert_eq!(iter.nth(43_526), Some(Word("us")));

        // unfunny
        assert_eq!(iter.next(), None);
    }
}