rem_first_char

Function rem_first_char 

Source
pub fn rem_first_char(value: &str) -> String
Expand description

Removes the first character of a string.

ยงExample

use wagon_utils::rem_first_char;

let s = "123";
assert_eq!("23", rem_first_char(s));