| author | |
| committer | |
| log | 3dadb8c4c9fcf2887a4691f4c1c1a17ee4669bfc |
| tree | bae610daf18adc6114bd05361da0ff5ab7051362 |
| parent | f38d7a92cc1ca8059ba909a82f2f944966b52296 |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/math/big/int.zig+2-2| ... | ... | @@ -2844,8 +2844,8 @@ pub const Managed = struct { |
| 2844 | 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 | |
| 2848 | /// > b respectively. | |
| 2847 | /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a > b | |
| 2848 | /// respectively. | |
| 2849 | 2849 | pub fn order(a: Managed, b: Managed) math.Order { |
| 2850 | 2850 | return a.toConst().order(b.toConst()); |
| 2851 | 2851 | } |