| ... | @@ -2844,8 +2844,8 @@ pub const Managed = struct { | ... | @@ -2844,8 +2844,8 @@ pub const Managed = struct { |
| 2844 | return a.toConst().orderAbs(b.toConst()); | 2844 | return a.toConst().orderAbs(b.toConst()); |
| 2845 | } | 2845 | } |
| 2846 | | 2846 | |
| 2847 | /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a | 2847 | /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a > b |
| 2848 | /// > b respectively. | 2848 | /// respectively. |
| 2849 | pub fn order(a: Managed, b: Managed) math.Order { | 2849 | pub fn order(a: Managed, b: Managed) math.Order { |
| 2850 | return a.toConst().order(b.toConst()); | 2850 | return a.toConst().order(b.toConst()); |
| 2851 | } | 2851 | } |