Trait enso_flexer::prelude::logger::prelude::slice::Join[][src]

pub trait Join<Separator> {
    type Output;
    fn join(slice: &Self, sep: Separator) -> Self::Output;
}
🔬 This is a nightly-only experimental API. (slice_concat_trait)
Expand description

Helper trait for [T]::join

Associated Types

type Output[src]

🔬 This is a nightly-only experimental API. (slice_concat_trait)
Expand description

The resulting type after concatenation

Loading content...

Required methods

fn join(slice: &Self, sep: Separator) -> Self::Output[src]

🔬 This is a nightly-only experimental API. (slice_concat_trait)
Expand description

Implementation of [T]::join

Loading content...

Implementations on Foreign Types

impl<'_, S> Join<&'_ str> for [S] where
    S: Borrow<str>, 
[src]

type Output = String

🔬 This is a nightly-only experimental API. (slice_concat_trait)

pub fn join(slice: &[S], sep: &str) -> String[src]

🔬 This is a nightly-only experimental API. (slice_concat_trait)

impl<'_, T, V> Join<&'_ T> for [V] where
    T: Clone,
    V: Borrow<[T]>, 
[src]

type Output = Vec<T, Global>

🔬 This is a nightly-only experimental API. (slice_concat_trait)

pub fn join(slice: &[V], sep: &T) -> Vec<T, Global>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
[src]

🔬 This is a nightly-only experimental API. (slice_concat_trait)

impl<'_, T, V> Join<&'_ [T]> for [V] where
    T: Clone,
    V: Borrow<[T]>, 
[src]

type Output = Vec<T, Global>

🔬 This is a nightly-only experimental API. (slice_concat_trait)

pub fn join(slice: &[V], sep: &[T]) -> Vec<T, Global>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
[src]

🔬 This is a nightly-only experimental API. (slice_concat_trait)
Loading content...

Implementors

Loading content...