10 releases

0.1.12 Aug 17, 2024
0.1.11 Aug 17, 2024
0.1.10 Jul 27, 2024
0.1.6 Jun 25, 2024

#44 in #mark-down

Download history 179/week @ 2024-06-23 298/week @ 2024-06-30 8/week @ 2024-07-07 167/week @ 2024-07-14 102/week @ 2024-07-21 68/week @ 2024-07-28 63/week @ 2024-08-04 187/week @ 2024-08-11 110/week @ 2024-08-18 33/week @ 2024-08-25 49/week @ 2024-09-01 22/week @ 2024-09-08

385 downloads per month
Used in 7 crates (via mreq)

MulanPSL-2.0

9KB
80 lines

citer

use aok::{Result, OK};
use citer::CIter;
use static_init::constructor;

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

// #[tokio::test]
// async fn test() -> Result<()> {
//   info!("{}", 123456);
//   OK
// }

#[test]
fn test() -> Result<()> {
  let vec = &[1, 2, 3, 4][..];
  let iter = CIter::new(vec, 1);

  for value in iter {
    println!("{}", value);
  }
  OK
}

About

This project is an open-source component of i18n.site ⋅ Internationalization Solution.

关于

本项目为 i18n.site ⋅ 国际化解决方案 的开源组件。

Dependencies

~205KB