std_ext/
vec_ext.rs

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
use std::ops::Deref;

pub trait VecExt<T> {
    fn any<F: Fn(&T) -> bool>(&self, f: F) -> bool;
    fn fold<F, U>(&self, f: F, init: U) -> U
    where
        F: Fn(U, &T) -> U;
    fn into_first(self) -> Option<T>;
    fn into_last(self) -> Option<T>;
}

pub trait DerefVec<T>
where
    T: Deref,
{
    fn includes(&self, item: &T::Target) -> bool;
}

impl<T> VecExt<T> for Vec<T> {
    fn any<F: Fn(&T) -> bool>(&self, f: F) -> bool {
        self.iter().any(f)
    }

    fn fold<F, U>(&self, f: F, init: U) -> U
    where
        F: Fn(U, &T) -> U,
    {
        self.iter().fold(init, f)
    }

    fn into_first(self) -> Option<T> {
        self.into_iter().next()
    }

    fn into_last(mut self) -> Option<T> {
        if self.is_empty() {
            return None;
        }
        Some(self.remove(self.len() - 1))
    }
}

impl<T> DerefVec<T> for Vec<T>
where
    T: Deref + PartialEq<T::Target>,
{
    fn includes(&self, item: &T::Target) -> bool {
        self.iter().any(|i| i == item)
    }
}

#[macro_export]
macro_rules! vec_into {
    ($(($($item:expr),*)),* $(,)?) => {
        {
            let mut v = Vec::new();
            $(v.push(($($item.into()),*));)*
            v
        }
    };
    ($($item:expr),* $(,)?) => {
        {
            let mut v = Vec::new();
            $(v.push($item.into());)*
            v
        }
    };
}

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

    #[test]
    fn test_deref() {
        let s = vec!["a".to_string(), "b".to_string()];
        assert!(s.includes("a"));
    }
}