Removes all instances of match from source.
TODO: merge with filter
Template params: T = type of array element
pattern to remove from source array
buffer to write resulting array to
result
Buffer!(char) result; remove("aaabbbaaa"[], "bbb"[], result); test!("==")(result[], "aaaaaa"[]);
See Implementation
Removes all instances of match from source.
TODO: merge with filter
Template params: T = type of array element