qx_rs_str 0.0.0

quick str util in rust.
Documentation
use qx_rs_err::err::*;
use qx_rs_str::path;

#[test]
fn test() -> Result<()> {

    println!(">{}", path::combine("", ""));
    println!(">{}", path::combine("/", "/"));
    println!(">{}", path::combine("/", ""));
    println!(">{}", path::combine("", "/"));
    println!(">{}", path::combine("abc", "def"));
    println!(">{}", path::combine("/abc/", "/def/"));
    println!(">{}", path::combine("abc/", "/def/"));
    println!(">{}", path::combine("/abc", "/def/"));
    println!(">{}", path::combine("/abc/", "def/"));
    println!(">{}", path::combine("/abc/", "/def"));
  
    Ok(())
}