Lines Matching defs:to_vec
87 pub use hack::to_vec;
112 pub fn to_vec<T: ConvertVec, A: Allocator>(s: &[T], alloc: A) -> Vec<T, A> {
113 T::to_vec(s, alloc)
118 fn to_vec<A: Allocator>(s: &[Self], alloc: A) -> Vec<Self, A>
126 default fn to_vec<A: Allocator>(s: &[Self], alloc: A) -> Vec<Self, A> {
163 fn to_vec<A: Allocator>(s: &[Self], alloc: A) -> Vec<Self, A> {
406 /// let x = s.to_vec();
414 pub fn to_vec(&self) -> Vec<T>
443 hack::to_vec(self, alloc)
624 let mut me = self.to_vec();
645 let mut me = self.to_vec();
825 self.to_vec()
830 hack::to_vec(self, Global)