Struct flowstdlib::data::ordered_split::OrderedSplit
source · pub struct OrderedSplit;Expand description
OrderedSplit (//flowstdlib/data/ordered_split)
Split a string into (possibly) its constituent parts based on a separator.
It guarantees to produce an array of strings, ordered the same as the input string.
Include using
[[process]]
source = "lib://flowstdlib/data/ordered_split"
Definition
function = "ordered_split"
source = "ordered_split.rs"
docs = "ordered_split.md"
type = "rust"
[[input]]
name = "string" # - the String to split
type = "string"
[[input]]
name = "separator" # - the String to use as a separator
type = "string"
[[output]]
type = "array/string"
Trait Implementations§
source§impl Debug for OrderedSplit
impl Debug for OrderedSplit
Auto Trait Implementations§
impl RefUnwindSafe for OrderedSplit
impl Send for OrderedSplit
impl Sync for OrderedSplit
impl Unpin for OrderedSplit
impl UnwindSafe for OrderedSplit
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more