strs_tools 0.45.0

Tools to manipulate strings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

//! Namespace pattern verification tests for `strs_tools`.

#[ test ]
fn verify_namespace_patterns()
{
    use strs_tools::prelude::*;
    
    // Test prelude import works
    let _builder = split();
    
    // Test qualified path access  
    let _qualified_builder = strs_tools::string::split::split();
    
    println!("All namespace patterns work correctly");
}