-
Notifications
You must be signed in to change notification settings - Fork 155
Remove Dimension::Undefined in favour of Option<Dimension>
#148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3a5907d
Update RELEASES.md
alice-i-cecile 6aff5f5
Implement extension traits for Option<f32>
alice-i-cecile 345d085
Replace usages of Number with Option<f32>
alice-i-cecile 5e1b9ff
Rename module from number.rs to math.rs
alice-i-cecile 4e54472
Note removal of associated traits
alice-i-cecile bf85308
Make behavior of maybe_sub consistent
alice-i-cecile b8b1151
Thanks clippy!
alice-i-cecile dda38a0
dead_code XD
alice-i-cecile 56ac052
Merge branch 'main' into number-yeet
alice-i-cecile 709ed5a
Start cleanup
Weibye d55edda
Merge branch 'main' into option-dimension
alice-i-cecile 4c612e5
in progress
Weibye a9c009d
More wip
Weibye 8439c05
More options!
Weibye 3b536c3
`Size<Option<T>>` -> ``Size<T>`
Weibye d5163b0
Maybe this will work
Weibye 7232440
maybe_add in sums
Weibye bccac8e
Continuing work to get flexbox algorithm to work
Weibye dfc46c1
Fixing generics?
Weibye 1d780e4
Consider these just sketches for now
Weibye File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With
MaybeMathI should be able to just useself.start.maybe_add(self.end)here (?) but not sure exactly how to get that to work.Traits this involved are new to me, so bear with me while I try to figure this out 🙃