Shane F. Carr

Results 1847 comments of Shane F. Carr

```rust pub struct ZeroArray( pub [T::ULE; N] ); ``` Note that `type ULE` for ZeroArray is itself. This means that we should be able to nest them, like ```rust //...

Good point. I'm going to close this issue until I get a clearer design.

I'm going to re-open this issue. To answer @Manishearth's original question: > is there something that ZeroArray gets us that, say, `Cow

I envision ZeroArray being a MultiFieldsULE, where you can `.get(5)` to get the item at index 5. There could potentially be a getter that returns a `[T; N]` but that...

The problem is that MultiFieldsULE aka TupleNULE have a limited length since we define only a fixed number of types, currently up to length 6, but I want to have...

The "actual problem" is Henri's PR which you left some comments on. He has an array which he's storing as a ZeroVec with a pinky promise of being the right...

I understand what you mean by `Indirect

I guess I am sort-of talking about a third class of things in zerovec: fixed-length but always borrowed. Let's call this new class of things `FixedULE` for now. Then we...

The CLDR Design WG didn't really reach a conclusive decision when this was discussed. In the short term, I think we should keep the ICU4X 2.0 behavior because it's less...

Things I'd like feedback on: 1. Names of things 2. The two traits (safe and unsafe) and how they do/don't interact with each other 3. The unusual safety requirement on...