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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
use crate::{
    alphanumeric::prelude::*,
    core::prelude::*,
    errors::prelude::*,
};

/// ArrayTrait - Alphanumeric Array operations
pub trait ArrayStringIndexing<N: Alphanumeric> where Self: Sized + Clone {

    /// Return string.len() element-wise
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![6, 9, 3]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaAacc".to_string(), "abc".to_string()]);
    /// assert_eq!(expected, arr.str_len());
    /// ```
    fn str_len(&self) -> Result<Array<usize>, ArrayError>;

    /// Returns an array with the number of non-overlapping occurrences of substring sub
    ///
    /// # Arguments
    ///
    /// * `sub` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![3, 2, 1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.count(&Array::single("Aa".to_string()).unwrap()));
    ///
    /// let expected = Array::flat(vec![1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string()]);
    /// assert_eq!(expected, arr.count(&Array::single("AaAa".to_string()).unwrap()));
    /// ```
    fn count(&self, sub: &Array<N>) -> Result<Array<usize>, ArrayError>;

    /// Checks if string element starts with prefix
    ///
    /// # Arguments
    ///
    /// * `prefix` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![true, false, false]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.starts_with(&Array::single("Aa".to_string()).unwrap()));
    /// ```
    fn starts_with(&self, prefix: &Array<N>) -> Result<Array<bool>, ArrayError>;

    /// Checks if string element ends with suffix
    ///
    /// # Arguments
    ///
    /// * `suffix` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![false, true, false]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.ends_with(&Array::single("aA".to_string()).unwrap()));
    /// ```
    fn ends_with(&self, suffix: &Array<N>) -> Result<Array<bool>, ArrayError>;

    /// For each element, return the lowest index in the string where substring sub is found
    ///
    /// # Arguments
    ///
    /// * `sub` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![1, 0, -1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.find(&Array::single("aA".to_string()).unwrap()));
    /// ```
    fn find(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError>;

    /// For each element, return the highest index in the string where substring sub is found
    ///
    /// # Arguments
    ///
    /// * `sub` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![3, 4, -1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.rfind(&Array::single("aA".to_string()).unwrap()));
    /// ```
    fn rfind(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError>;

    /// For each element, return the lowest index in the string where substring sub is found;
    /// alias on `find`
    ///
    /// # Arguments
    ///
    /// * `sub` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![1, 0, -1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.index(&Array::single("aA".to_string()).unwrap()));
    /// ```
    fn index(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError>;

    /// For each element, return the highest index in the string where substring sub is found;
    /// alias on `rfind`
    ///
    /// # Arguments
    ///
    /// * `sub` - substring to search for
    ///
    /// # Examples
    ///
    /// ```
    /// use arr_rs::prelude::*;
    ///
    /// let expected = Array::flat(vec![3, 4, -1]);
    /// let arr = Array::flat(vec!["AaAaAa".to_string(), "aAaAaA".to_string(), "bbAabb".to_string()]);
    /// assert_eq!(expected, arr.rindex(&Array::single("aA".to_string()).unwrap()));
    /// ```
    fn rindex(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError>;
}

impl <N: Alphanumeric> ArrayStringIndexing<N> for Array<N> {

    fn str_len(&self) -> Result<Array<usize>, ArrayError> {
        let elements = self.clone().into_iter()
            .map(|item| item.to_string().len())
            .collect();
        Array::new(elements, self.get_shape()?)
    }

    fn count(&self, sub: &Array<N>) -> Result<Array<usize>, ArrayError> {
        let broadcasted = self.broadcast(sub)?;
        let elements = broadcasted.clone().into_iter()
            .map(|item| item.0._count(item.1.to_string().as_str()))
            .collect();
        Array::new(elements, broadcasted.get_shape()?)
    }

    fn starts_with(&self, prefix: &Array<N>) -> Result<Array<bool>, ArrayError> {
        let broadcasted = self.broadcast(prefix)?;
        let elements = broadcasted.clone().into_iter()
            .map(|item| item.0.to_string().starts_with(&item.1.to_string()))
            .collect();
        Array::new(elements, broadcasted.get_shape()?)
    }

    fn ends_with(&self, suffix: &Array<N>) -> Result<Array<bool>, ArrayError> {
        let broadcasted = self.broadcast(suffix)?;
        let elements = broadcasted.clone().into_iter()
            .map(|item| item.0.to_string().ends_with(&item.1.to_string()))
            .collect();
        Array::new(elements, broadcasted.get_shape()?)
    }

    fn find(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        let broadcasted = self.broadcast(sub)?;
        let elements = broadcasted.clone().into_iter()
            .map(|item| match item.0.to_string().find(&item.1.to_string()) {
                Some(idx) => idx as isize,
                None => -1,
            })
            .collect();
        Array::new(elements, broadcasted.get_shape()?)
    }

    fn rfind(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        let broadcasted = self.broadcast(sub)?;
        let elements = broadcasted.clone().into_iter()
            .map(|item| match item.0.to_string().rfind(&item.1.to_string()) {
                Some(idx) => idx as isize,
                None => -1,
            })
            .collect();
        Array::new(elements, broadcasted.get_shape()?)
    }

    fn index(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.find(sub)
    }

    fn rindex(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.rfind(sub)
    }
}

impl <N: Alphanumeric> ArrayStringIndexing<N> for Result<Array<N>, ArrayError> {

    fn str_len(&self) -> Result<Array<usize>, ArrayError> {
        self.clone()?.str_len()
    }

    fn count(&self, sub: &Array<N>) -> Result<Array<usize>, ArrayError> {
        self.clone()?.count(sub)
    }

    fn starts_with(&self, prefix: &Array<N>) -> Result<Array<bool>, ArrayError> {
        self.clone()?.starts_with(prefix)
    }

    fn ends_with(&self, suffix: &Array<N>) -> Result<Array<bool>, ArrayError> {
        self.clone()?.ends_with(suffix)
    }

    fn find(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.clone()?.find(sub)
    }

    fn rfind(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.clone()?.rfind(sub)
    }

    fn index(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.clone()?.index(sub)
    }

    fn rindex(&self, sub: &Array<N>) -> Result<Array<isize>, ArrayError> {
        self.clone()?.rindex(sub)
    }
}