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
use core::{cmp::Ordering, marker::Destruct};
use slice_trait::Slice;
use super::SliceArgReduce;
#[const_trait]
pub trait SliceArgMinMax<T>: Slice<Item = T>
{
/// Finds the index of the maximum value in the slice.
///
/// If there are multiple maxima, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = [1, 5, 5, 6, 2, -1, 0, -4, -1, 6];
///
/// let i = x.argmax().unwrap();
///
/// assert_eq!(i, 3);
/// ```
fn argmax(&self) -> Option<usize>
where
T: PartialOrd<T>;
/// Finds the index of the minimum value in the slice.
///
/// If there are multiple minimums, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = [1, 5, 5, 6, 2, -1, 0, -4, -1, 6];
///
/// let i = x.argmin().unwrap();
///
/// assert_eq!(i, 7);
/// ```
fn argmin(&self) -> Option<usize>
where
T: PartialOrd<T>;
/// Finds the index of the maximum value in the slice, given a comparison predicate.
///
/// If there are multiple maxima, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = [1, 5, 5, 6, 2, -1, 0, -4, -1, 6];
///
/// let f = Ord::cmp;
///
/// let i = x.argmax_by(f).unwrap();
///
/// assert_eq!(i, 3);
/// ```
fn argmax_by<'a, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T, &'a T) -> Ordering + ~const Destruct,
T: 'a;
/// Finds the index of the minimum value in the slice, given a comparison predicate.
///
/// If there are multiple minimums, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = [1, 5, 5, 6, 2, -1, 0, -4, -1, 6];
///
/// let f = Ord::cmp;
///
/// let i = x.argmin_by(f).unwrap();
///
/// assert_eq!(i, 7);
/// ```
fn argmin_by<'a, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T, &'a T) -> Ordering + ~const Destruct,
T: 'a;
/// Finds the index of the maximum key in the slice, given a hashing function.
///
/// If there are multiple maxima, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = ["1", "5", "5", "6", "2", "-1", "0", "-4", "-1", "6"];
///
/// let f = |&e| i32::from_str_radix(e, 10).unwrap();
///
/// let i = x.argmax_by_key(f).unwrap();
///
/// assert_eq!(i, 3);
/// ```
fn argmax_by_key<'a, B, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T) -> B + ~const Destruct,
B: PartialOrd,
T: 'a;
/// Finds the index of the minimum key in the slice, given a hashing function.
///
/// If there are multiple minimums, only the first will have its index returned.
///
/// # Example
///
/// ```rust
/// use slice_ops::ops::*;
///
/// // v
/// let x = ["1", "5", "5", "6", "2", "-1", "0", "-4", "-1", "6"];
///
/// let f = |&e| i32::from_str_radix(e, 10).unwrap();
///
/// let i = x.argmin_by_key(f).unwrap();
///
/// assert_eq!(i, 7);
/// ```
fn argmin_by_key<'a, B, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T) -> B + ~const Destruct,
B: PartialOrd,
T: 'a;
}
impl<T> SliceArgMinMax<T> for [T]
{
fn argmax(&self) -> Option<usize>
where
T: PartialOrd
{
self.argreduce(PartialOrd::gt)
}
fn argmin(&self) -> Option<usize>
where
T: PartialOrd
{
self.argreduce(PartialOrd::lt)
}
fn argmax_by<'a, F>(&'a self, mut f: F) -> Option<usize>
where
F: FnMut(&'a T, &'a T) -> Ordering,
T: 'a
{
self.argreduce(|a, b| matches!(f(a, b), Ordering::Greater))
}
fn argmin_by<'a, F>(&'a self, mut f: F) -> Option<usize>
where
F: FnMut(&'a T, &'a T) -> Ordering,
T: 'a
{
self.argreduce(|a, b| matches!(f(a, b), Ordering::Less))
}
fn argmax_by_key<'a, B, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T) -> B,
B: PartialOrd,
T: 'a
{
self.argreduce_key(PartialOrd::gt, f)
}
fn argmin_by_key<'a, B, F>(&'a self, f: F) -> Option<usize>
where
F: FnMut(&'a T) -> B,
B: PartialOrd,
T: 'a
{
self.argreduce_key(PartialOrd::lt, f)
}
}
#[cfg(test)]
mod test
{
use crate::ops::SliceArgMinMax;
#[test]
fn it_works()
{
let a = [1, 2];
let ar: &[u8] = &a;
let i = ar.argmin().unwrap();
println!("{}", i);
}
}