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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

/// An enum to represent all characters in the SupplementalArrowsA block.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum SupplementalArrowsA {
    /// \u{27f0}: '⟰'
    UpwardsQuadrupleArrow,
    /// \u{27f1}: '⟱'
    DownwardsQuadrupleArrow,
    /// \u{27f2}: '⟲'
    AnticlockwiseGappedCircleArrow,
    /// \u{27f3}: '⟳'
    ClockwiseGappedCircleArrow,
    /// \u{27f4}: '⟴'
    RightArrowWithCircledPlus,
    /// \u{27f5}: '⟵'
    LongLeftwardsArrow,
    /// \u{27f6}: '⟶'
    LongRightwardsArrow,
    /// \u{27f7}: '⟷'
    LongLeftRightArrow,
    /// \u{27f8}: '⟸'
    LongLeftwardsDoubleArrow,
    /// \u{27f9}: '⟹'
    LongRightwardsDoubleArrow,
    /// \u{27fa}: '⟺'
    LongLeftRightDoubleArrow,
    /// \u{27fb}: '⟻'
    LongLeftwardsArrowFromBar,
    /// \u{27fc}: '⟼'
    LongRightwardsArrowFromBar,
    /// \u{27fd}: '⟽'
    LongLeftwardsDoubleArrowFromBar,
    /// \u{27fe}: '⟾'
    LongRightwardsDoubleArrowFromBar,
}

impl Into<char> for SupplementalArrowsA {
    fn into(self) -> char {
        match self {
            SupplementalArrowsA::UpwardsQuadrupleArrow => '⟰',
            SupplementalArrowsA::DownwardsQuadrupleArrow => '⟱',
            SupplementalArrowsA::AnticlockwiseGappedCircleArrow => '⟲',
            SupplementalArrowsA::ClockwiseGappedCircleArrow => '⟳',
            SupplementalArrowsA::RightArrowWithCircledPlus => '⟴',
            SupplementalArrowsA::LongLeftwardsArrow => '⟵',
            SupplementalArrowsA::LongRightwardsArrow => '⟶',
            SupplementalArrowsA::LongLeftRightArrow => '⟷',
            SupplementalArrowsA::LongLeftwardsDoubleArrow => '⟸',
            SupplementalArrowsA::LongRightwardsDoubleArrow => '⟹',
            SupplementalArrowsA::LongLeftRightDoubleArrow => '⟺',
            SupplementalArrowsA::LongLeftwardsArrowFromBar => '⟻',
            SupplementalArrowsA::LongRightwardsArrowFromBar => '⟼',
            SupplementalArrowsA::LongLeftwardsDoubleArrowFromBar => '⟽',
            SupplementalArrowsA::LongRightwardsDoubleArrowFromBar => '⟾',
        }
    }
}

impl std::convert::TryFrom<char> for SupplementalArrowsA {
    type Error = ();
    fn try_from(c: char) -> Result<Self, Self::Error> {
        match c {
            '⟰' => Ok(SupplementalArrowsA::UpwardsQuadrupleArrow),
            '⟱' => Ok(SupplementalArrowsA::DownwardsQuadrupleArrow),
            '⟲' => Ok(SupplementalArrowsA::AnticlockwiseGappedCircleArrow),
            '⟳' => Ok(SupplementalArrowsA::ClockwiseGappedCircleArrow),
            '⟴' => Ok(SupplementalArrowsA::RightArrowWithCircledPlus),
            '⟵' => Ok(SupplementalArrowsA::LongLeftwardsArrow),
            '⟶' => Ok(SupplementalArrowsA::LongRightwardsArrow),
            '⟷' => Ok(SupplementalArrowsA::LongLeftRightArrow),
            '⟸' => Ok(SupplementalArrowsA::LongLeftwardsDoubleArrow),
            '⟹' => Ok(SupplementalArrowsA::LongRightwardsDoubleArrow),
            '⟺' => Ok(SupplementalArrowsA::LongLeftRightDoubleArrow),
            '⟻' => Ok(SupplementalArrowsA::LongLeftwardsArrowFromBar),
            '⟼' => Ok(SupplementalArrowsA::LongRightwardsArrowFromBar),
            '⟽' => Ok(SupplementalArrowsA::LongLeftwardsDoubleArrowFromBar),
            '⟾' => Ok(SupplementalArrowsA::LongRightwardsDoubleArrowFromBar),
            _ => Err(()),
        }
    }
}

impl Into<u32> for SupplementalArrowsA {
    fn into(self) -> u32 {
        let c: char = self.into();
        let hex = c
            .escape_unicode()
            .to_string()
            .replace("\\u{", "")
            .replace("}", "");
        u32::from_str_radix(&hex, 16).unwrap()
    }
}

impl std::convert::TryFrom<u32> for SupplementalArrowsA {
    type Error = ();
    fn try_from(u: u32) -> Result<Self, Self::Error> {
        if let Ok(c) = char::try_from(u) {
            Self::try_from(c)
        } else {
            Err(())
        }
    }
}

impl Iterator for SupplementalArrowsA {
    type Item = Self;
    fn next(&mut self) -> Option<Self> {
        let index: u32 = (*self).into();
        use std::convert::TryFrom;
        Self::try_from(index + 1).ok()
    }
}

impl SupplementalArrowsA {
    /// The character with the lowest index in this unicode block
    pub fn new() -> Self {
        SupplementalArrowsA::UpwardsQuadrupleArrow
    }

    /// The character's name, in sentence case
    pub fn name(&self) -> String {
        let s = std::format!("SupplementalArrowsA{:#?}", self);
        string_morph::to_sentence_case(&s)
    }
}