修正Option的排序

由于`None<Some(T)`为`true`(如果`T:PartialOrd`)
所以Option的枚举中,`None`在前,`Some`在后,这个顺序最好不要更改
pull/1450/head
Neutron3529 1 month ago committed by GitHub
parent 00bc161f2e
commit d6a5b83c4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,8 +4,8 @@
```rust
enum Option<T> {
Some(T),
None,
Some(T),
}
```

Loading…
Cancel
Save