xiaokang

Function search

Source
pub fn search<'a>(query: &str, contents: &'a str) -> Vec<&'a str>
Expand description

Adds one to the number given.

ยงExamples

let arg = 5;
let answer = my_crate::add_one(arg);

assert_eq!(6, answer);