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

#178 in #site

Download history 3/week @ 2024-11-13 16/week @ 2024-11-20 19/week @ 2024-11-27 17/week @ 2024-12-04 10/week @ 2024-12-11 1/week @ 2024-12-18 18/week @ 2024-12-25 3/week @ 2025-01-08 10/week @ 2025-02-05 11/week @ 2025-02-12 24/week @ 2025-02-19 13/week @ 2025-02-26

58 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

~210KB