Lines Matching defs:connect
22591 /// assert_eq!(["hello", "world"].connect(" "), "hello world");
22592 /// assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
22596 pub fn connect<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output