Function uwuifier::uwuify_str_sse[][src]

pub fn uwuify_str_sse(s: &str) -> String

uwuify a string slice

requires the sse4.1 x86 feature

this is probably fine for one-off use, but not very efficient if called multiple times. use uwuify_sse to reduce memory allocations

example:

use uwuifier::uwuify_str_sse;
assert_eq!(uwuify_str_sse("hello world"), "hewwo wowwd");