cbfr 0.1.3

A buffer that run on stack, focusing on performance and speed
Documentation

cbfr

**A fast simple buffer running on stack, built on top of rust primitive array

Our links:

What's new in version 0.1.2..?

  • Code have been restructured, now it's much simpler and easy to import
  • Helper functions are now excluded from prelude
  • Some method and function are now const

Quick start:


use cbfr::prelude::BFRDYN;


fn main() {
    let mut b1:BFRDYN = "I love ..".into();

    b1.reverse();
    let v = b1.to_vec(' ');

    println!("{}", b1);
    println!("{:?}", v);

    let mut b2: BFRDYN<512> = BFRDYN::new();
    b2.append_str("coding!").unwrap(); 
    println!("{}", b2);

    let mut b3:BFRDYN = "cbr".into();
    let b4:BFRDYN = "eda".into();
    b3.append(b4).unwrap();
    
    b3.sort(); 
    println!("{}", b3);
}

Feedback:

If you have any suggestions, issues, feedback, or anything..? Send issues or feedback