risingwave_common/row/
repeat_n.rs1use super::Row;
16use crate::types::{DatumRef, ToDatumRef};
17
18#[derive(Debug, Clone, Copy)]
20pub struct RepeatN<D> {
21 datum: D,
22 n: usize,
23}
24
25impl<D: PartialEq> PartialEq for RepeatN<D> {
26 fn eq(&self, other: &Self) -> bool {
27 if self.n == 0 && other.n == 0 {
28 true
29 } else {
30 self.datum == other.datum && self.n == other.n
31 }
32 }
33}
34impl<D: Eq> Eq for RepeatN<D> {}
35
36impl<D: ToDatumRef> Row for RepeatN<D> {
37 #[inline]
38 fn datum_at(&self, index: usize) -> crate::types::DatumRef<'_> {
39 if index < self.n {
40 self.datum.to_datum_ref()
41 } else {
42 panic!(
43 "index out of bounds: the len is {} but the index is {}",
44 self.n, index
45 )
46 }
47 }
48
49 #[inline]
50 unsafe fn datum_at_unchecked(&self, _index: usize) -> crate::types::DatumRef<'_> {
51 self.datum.to_datum_ref()
53 }
54
55 #[inline]
56 fn len(&self) -> usize {
57 self.n
58 }
59
60 #[inline]
61 fn iter(&self) -> impl Iterator<Item = DatumRef<'_>> {
62 std::iter::repeat_n(self.datum.to_datum_ref(), self.n)
63 }
64}
65
66pub fn repeat_n<D: ToDatumRef>(datum: D, n: usize) -> RepeatN<D> {
68 RepeatN { datum, n }
69}