/*
* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
* This source file is part of the Cangjie project, licensed under Apache-2.0
* with Runtime Library Exception.
*
* See https://cangjie-lang.cn/pages/LICENSE for license information.
*/
// The Cangjie API is in Beta. For details on its capabilities and limitations, please refer to the README file.
/**
* @file
*
* This is a library for math class.
*/
package std.math
public enum RoundingMode <: Equatable<RoundingMode> & ToString {
| Ceiling
| Down
| Floor
| HalfEven
| HalfUp
| Up
public operator func ==(other: RoundingMode): Bool {
return match ((this, other)) {
case (Ceiling, Ceiling) => true
case (Down, Down) => true
case (Floor, Floor) => true
case (HalfEven, HalfEven) => true
case (HalfUp, HalfUp) => true
case (Up, Up) => true
case _ => false
}
}
public func toString(): String {
return match (this) {
case Ceiling => "Ceiling"
case Down => "Down"
case Floor => "Floor"
case HalfEven => "HalfEven"
case HalfUp => "HalfUp"
case Up => "Up"
}
}
}