Closed nical closed 5 years ago
r? @kvark
Note that I put default::Vector4D
in lieu of default::HomogeneousVector
because I prefer it that way but that's up for debate. The rest should be fairly uncontroversial I think.
src/lib.rs, line 143 at r1 (raw file):
if we end up with just `Point2D`, what would be the use for `default` module?
These default type parameters have never ended up being useful. I'm not even sure in what situations the compiler decides to make usre of that information.
@bors-servo r=kvark
:pushpin: Commit 65c0e85 has been approved by kvark
:hourglass: Testing commit 65c0e85e57c2b527df2baac728cb255bcc3ed549 with merge b37eb9de57dfaf07661387fd71ac5abcd17200d0...
:sunny: Test successful - checks-travis Approved by: kvark Pushing b37eb9de57dfaf07661387fd71ac5abcd17200d0 to master...
default
module with type aliases for the default unit. The goal is to rename allTypedFoo
types intoFoo
next time we commit to a breaking change and usedefault::Foo
for the aliases with unknown units.The first two changes will let us transition some of the names at our leasure rather than having to do it all next time we do the Big Breaking Change.
This change is