sline

Crates.iosline
lib.rssline
version0.1.3
sourcesrc
created_at2024-02-21 10:46:25.211355
updated_at2024-06-13 10:39:56.551258
descriptionsline
homepagehttps://github.com/i18n-site/rust/tree/main/sline
repositoryhttps://github.com/i18n-site/rust.git
max_upload_size
id1147855
size3,760
(3tieto)

documentation

README

sline

use aok::{Result, OK};
use sline::Line;
use static_init::constructor;
use tracing::info;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

#[tokio::test]
async fn test() -> Result<()> {
  let txt_li = [
    r#"0
11

    22
 

  333
  4
    567

    9"#,
    "1\r\n2\r3\n4\n",
  ];

  for txt in txt_li {
    for i in Line::new(txt) {
      info!("{:?}", i);
    }
  }
  OK
}
Commit count: 20

cargo fmt