Documentation ¶
Index ¶
- Variables
- func Add[T Number](x, y T) T
- func Clear(i int)
- func Cmp[T Ordered](x, y T) int
- func Div[T Number](x, y T) T
- func Eq[T Comparable](x, y T) bool
- func Gt[T Ordered](x, y T) bool
- func Gte[T Ordered](x, y T) bool
- func Identity[T any](x T) T
- func Ifelse[T any](condition bool, trueVal T, falseVal T) T
- func Lt[T Ordered](x, y T) bool
- func Lte[T Ordered](x, y T) bool
- func Max[T Ordered](x, y T) T
- func Min[T Ordered](x, y T) T
- func Mod[T Integer](x, y T) T
- func Mul[T Number](x, y T) T
- func NotEq[T Comparable](x, y T) bool
- func Sub[T Number](x, y T) T
- func SysStop() context.Context
- type Comparable
- type Float
- type Integer
- type Logical
- type Number
- type Ordered
- type String
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ASCInt = Lt[int] DESCInt = Gt[int] )
Functions ¶
func Eq ¶
func Eq[T Comparable](x, y T) bool
func Ifelse ¶
Ifelse 根据给定的布尔条件 condition,选择返回 trueVal 或 falseVal。 如果 condition 为 true,则返回 trueVal;否则返回 falseVal。 参数:
- condition - 用于判断的布尔条件。
- trueVal - 当 condition 为 true 时返回的值。
- falseVal - 当 condition 为 false 时返回的值。
返回:
- 根据 condition 的结果返回 trueVal 或 falseVal。
func NotEq ¶
func NotEq[T Comparable](x, y T) bool
Types ¶
type Comparable ¶
type Comparable interface { comparable }
Click to show internal directories.
Click to hide internal directories.