☰
Type Definition SewUpVec
Trait Implementations
VecLike<V>
Other items in
sewup
::
kv
All crates
?
Type Definition
sewup
::
kv
::
SewUpVec
[
−
]
[src]
pub type SewUpVec<T> =
Bucket
<
usize
, T>;
Trait Implementations
[src]
impl<V:
Clone
+
Value
+
PartialEq
>
VecLike
<V> for
SewUpVec
<V>
[src]
fn
to_vec
(&self) ->
Vec
<V>
[src]
fn
append
(&mut self, other: &mut
Vec
<V>)
[src]
fn
push
(&mut self, value: V)
[src]
fn
pop
(&mut self) ->
Option
<V>
[src]
fn
clear
(&mut self)
[src]
fn
resize_with
<F>(&mut self, new_len:
usize
, f: F)
where
F:
FnMut
() -> V,
[src]
fn
resize
(&mut self, new_len:
usize
, value: V)
[src]
fn
extend_from_slice
(&mut self, other:
&[V]
)
[src]
fn
dedup
(&mut self)
[src]
fn
swap
(&mut self, a:
usize
, b:
usize
)
[src]
fn
reverse
(&mut self)
[src]
fn
contains
(&self, x:
&
V) ->
bool
[src]
fn
starts_with
(&self, needle:
&[V]
) ->
bool
[src]
fn
ends_with
(&self, needle:
&[V]
) ->
bool
[src]
fn
rotate_left
(&mut self, mid:
usize
)
[src]
fn
rotate_right
(&mut self, k:
usize
)
[src]
fn
fill_with
<F>(&mut self, f: F)
where
F:
FnMut
() -> V,
[src]
fn
copy_from_slice
(&mut self, src:
&[V]
)
where
V:
Copy
,
[src]
fn
sort
(&mut self)
where
V:
Ord
,
[src]
fn
truncate
(&mut self, len:
usize
)