struct_Chain

struct_Chain (연결 이터레이터 (struct))

두 이터레이터를 연결하는 이터레이터예요.

출처: Rust 공식 문서

본문

두 이터레이터를 연결하는 이터레이터예요. 첫 번째가 끝난 뒤 두 번째로 넘어가요. Iterator::chain 메서드나 iter::chain() 함수로 만들어져요.

pub struct Chain<A, B> { /* private fields */ }

더 알아보기 (Learn more)

Rust 공식 문서