Docs.rs
hetseq-0.2.0
hetseq 0.2.0
Permalink
Docs.rs crate page
Apache-2.0
/
MIT
Links
Repository
crates.io
Source
Owners
zakarumych
Dependencies
rayon ^1.0
normal
optional
shred ^0.5
normal
optional
Versions
78.85%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Zip
hetseq
0.2.0
Zip
Required Associated Types
Zipped
Required Methods
zip
Implementors
In crate hetseq
hetseq
Trait
Zip
Copy item path
Source
pub trait Zip<S> { type
Zipped
; // Required method fn
zip
(self, _: S) -> Self::
Zipped
; }
Required Associated Types
§
Source
type
Zipped
Required Methods
§
Source
fn
zip
(self, _: S) -> Self::
Zipped
Implementors
§
Source
§
impl
Zip
<
List
<
()
>> for
List
<
()
>
Source
§
type
Zipped
=
List
<
()
>
Source
§
impl
Zip
<
Queue
<
()
>> for
Queue
<
()
>
Source
§
type
Zipped
=
Queue
<
()
>
Source
§
impl<LH, LT, RH, RT, ZH>
Zip
<
Queue
<
(RH, RT)
>> for
Queue
<
(LH, LT)
>
where LH:
Zip
<RH, Zipped = ZH>,
Source
§
type
Zipped
=
Queue
<(ZH,
(LT, RT)
)>
Source
§
impl<LH, LT, RH, RT, ZT>
Zip
<
List
<
(RH, RT)
>> for
List
<
(LH, LT)
>
where LT:
Zip
<RT, Zipped = ZT>,
Source
§
type
Zipped
=
List
<(
(LH, RH)
, ZT)>