gpt4 book ai didi

iterator - 如果另一个特征是否实现,函数如何有条件地回退到特征?

转载 作者:行者123 更新时间:2023-11-29 08:29:31 25 4
gpt4 key购买 nike

我正在 build a library for generating the minimum perfect hash from a set of keys .这个想法是在不将完整数据集存储在内存中的情况下在线索引键。根据用户要求,skip_next() 可能不可用,我想回退到使用 next()。尽管基于迭代器的速度它可能会更慢,但它为一般用户简化了操作。

我的想法是有选择地迭代迭代器生成的所有元素。这段代码工作正常,但它需要用户实现特征FastIteration:

#[derive(Debug)]
struct Pixel {
r: Vec<i8>,
g: Vec<i8>,
b: Vec<i8>,
}

#[derive(Debug)]
struct Node {
r: i8,
g: i8,
b: i8,
}

struct PixelIterator<'a> {
pixel: &'a Pixel,
index: usize,
}

impl<'a> IntoIterator for &'a Pixel {
type Item = Node;
type IntoIter = PixelIterator<'a>;

fn into_iter(self) -> Self::IntoIter {
println!("Into &");
PixelIterator {
pixel: self,
index: 0,
}
}
}

impl<'a> Iterator for PixelIterator<'a> {
type Item = Node;
fn next(&mut self) -> Option<Node> {
println!("next &");
let result = match self.index {
0 | 1 | 2 | 3 => Node {
r: self.pixel.r[self.index],
g: self.pixel.g[self.index],
b: self.pixel.b[self.index],
},
_ => return None,
};
self.index += 1;
Some(result)
}
}

trait FastIteration {
fn skip_next(&mut self);
}

impl<'a> FastIteration for PixelIterator<'a> {
fn skip_next(&mut self) {
self.index += 1;
}
}

fn main() {
let p1 = Pixel {
r: vec![11, 21, 31, 41],
g: vec![12, 22, 32, 42],
b: vec![13, 23, 33, 43],
};

let mut index = 0;
let mut it = p1.into_iter();
loop {
if index == p1.r.len() {
break;
}

if index == 1 {
it.skip_next()
} else {
let val = it.next();
println!("{:?}", val);
}
index += 1;
}
}

如何使上述程序退回到使用正常的 next() 而不是 skip_next() 基于特征 FastIteration 实现与否?

fn fast_iterate<I>(objects: I)
where I: IntoIter + FastIteration { // should use skip_next() };

fn slow_iterate<I>(objects: I)
where I: IntoIter { // should NOT use skip_next(), use next() };

如上所述,一个人总是可以编写两个单独的 impl 但有可能在一个中完成吗?

这个问题基于:

最佳答案

您正在寻找不稳定功能特化:

#![feature(specialization)]

#[derive(Debug)]
struct Example(u8);

impl Iterator for Example {
type Item = u8;
fn next(&mut self) -> Option<u8> {
let v = self.0;
if v > 10 {
None
} else {
self.0 += 1;
Some(v)
}
}
}

trait FastIterator: Iterator {
fn skip_next(&mut self);
}

impl<I: Iterator> FastIterator for I {
default fn skip_next(&mut self) {
println!("step");
self.next();
}
}

impl FastIterator for Example {
fn skip_next(&mut self) {
println!("skip");
self.0 += 1;
}
}

fn main() {
let mut ex = Example(0);
ex.skip_next();

let mut r = 0..10;
r.skip_next();
}

关于iterator - 如果另一个特征是否实现,函数如何有条件地回退到特征?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51235721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com