RChunksExactMut — 끝에서부터 시작하는 정확한 가변 청크 반복자

RChunksExactMut — 끝에서부터 시작하는 정확한 가변 청크 반복자

RChunksExactMut는 슬라이스를 (겹치지 않는) 정확한 크기의 가변 청크로 나누되, 슬라이스 끝에서부터 시작해 순회하는 반복자예요. rchunks_exact_mut 메서드로 생성돼요.

출처: Rust 공식 문서

본문

pub struct RChunksExactMut<'a, T>
where
    T: 'a,
{ /* private fields */ }

주요 메서드

pub fn into_remainder(self) -> &'a mut [T]

이 반복자는 Debug, ExactSizeIterator, FusedIterator, Iterator, Send, Sync 등을 구현해요.

더 알아보기 (Learn more)