refactor: use a refinement type for Data.Vec#586
Open
4e554c4c wants to merge 3 commits intothe1lab:mainfrom
Open
refactor: use a refinement type for Data.Vec#5864e554c4c wants to merge 3 commits intothe1lab:mainfrom
4e554c4c wants to merge 3 commits intothe1lab:mainfrom
Conversation
Member
Changed pages
|
plt-amy
reviewed
Jan 27, 2026
Co-authored-by: Reed Mullanix <reedmullanix@gmail.com>
plt-amy
reviewed
Jan 27, 2026
plt-amy
reviewed
Jan 27, 2026
plt-amy
reviewed
Jan 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
resolves: #567
Description
As per a suggestion by @TOTBWF, this changes
Data.Vecto use a refinement type which codeslength xs = n.Unfortunately this means that induction on vecs now needs
vec-view, which makes some things messier. Worse still, I can't seem to use[]as a pattern for the empty vec since it conflicts with list, and use∷at all since it can't be a pattern.The order of instances is also changed a little bit, which means
[ p ]fails to realize as a list in1Lab.Reflection.List.I'd love some tips on how to make this a little bit cleaner :)
Checklist
Before submitting a merge request, please check the items below:
support/sort-imports.hs(ornix run --experimental-features nix-command -f . sort-imports).