Dheepak Krishnamurthy
Dheepak Krishnamurthy
Thanks for the quick replies! Removing the `Tech` constructor works. That resolves this issue I think and it can be closed. I'm curious. If I execute `@dim Tech` _after_ constructing...
> I guess we could make Between work on Unordered ? That would work but are you suggesting implementing functions on our end or making updates to `DimensionalData.jl`?
Cool! That makes sense! Feel free to close the issue as resolved.
It looks like I what I really want is to force everything to be `Unordered` so that `At` works always, even if it is slower. I think to use this...
> I guess we could make Between work on `Unordered` ? > > It just needs a `between` function for that using `findfirst`. Its in the selectors.jl file in the...
> Why force Unordered? Mainly because it is easier to know the types ahead of time. I'm playing around with using `DimStack` which I believe would avoid the need for...
> You are arguing for the second meaning to be canonical, but someone could equally argue for the first - then Between would work like Where over the interval. For...
> I'm wondering why type annotations are included in positional arguments but not keyword arguments? I have to double check if this is the case but I think keyword argument...
I like this idea! I think additionally `Alignment` should be `Start`, `Center`, `End` instead of `Left`, `Center`, `Right`. This would potentially allow us to use `Alignment` along a vertical axis...
Here's some options: - In the style [described in this comment](https://github.com/ratatui-org/ratatui/issues/241#issuecomment-1590331591): ```rust line!["Fuzzy Find {darkgray:(Press} {bold:{gray:/}} {darkgray:to start} {bold:{gray:ESC}} {darkgray:to finish)}"] ``` --- * the style of [stilo](https://crates.io/crates/stilo)'s macro ```rust...