猗露

Results 49 comments of 猗露

> PLCT实验室等吴伟大团队现在基本上都是从实习生逐步成长为全职员工。统一员工手册和实习生手册就有更方便的体验。 (1)PLCT实验室等吴,伟大团队现在基本上都是从实习生逐步成长为全职员工。统一员工手册和实习生手册就有更方便的体验。 (2)PLCT实验室等吴伟,大团队现在基本上都是从实习生逐步成长为全职员工。统一员工手册和实习生手册就有更方便的体验。 (3)PLCT实验室等,吴伟大团队现在基本上都是从实习生逐步成长为全职员工。统一员工手册和实习生手册就有更方便的体验。 容易断句成 (1)

@cknitt I found other vite-plugin-rescript https://github.com/jihchi/vite-plugin-rescript, it can add simply and like vite can load .ts file, this plugin can load .res files, rather than res.mjs as before > The...

I think we also need copy trait

> > I think we also need copy trait > > You mean a trait like Rust's `Copy`? element type is Immutable, we can use copy method rather than DFS...

Note: Here's a clone library specifically designed for multithreading. [illusory0x0/clone](https://mooncakes.io/docs/illusory0x0/clone)

> Maybe you can just make `unsafe_set` public. Since the `unsafe_get` is already public, I don't see a reason why `unsafe_set` cannot be. I also want to use `Array::make_uninit` to...

> If you want to use the intrinsics, just copy them to the `array` package. So how to copy them to the `array` package, If I want to use `Array::unsafe_set`...

> **Solution** > > Make the structure mutable while not exposing the mutability to the outside world by using `pub` constructor (instead of `pub(all)`. > User can use `@list.unfold` to...

> You can have: > > ```moonbit > let arr = Array::new(capacity=xxx) > iter.each(arr.push(_)) > ``` You're right, when using `collect` we should expect the content not to be particularly...

> Deque should be used as a two-direction queue, which means a lot of operations doesn't make sense, like `insert` or `rev` or `rev_inplace`, as they would break the ordering....