lisette-stdlib 0.1.16

Little language inspired by Rust that compiles to Go
Documentation
// Generated by Lisette bindgen
// Source: cmp (Go stdlib)
// Go: 1.25.5
// Lisette: 0.1.14

// SKIPPED: Compare - constraint:comparable
// type constraint T cannot be represented

// SKIPPED: Less - constraint:comparable
// type constraint T cannot be represented

// SKIPPED: Or - constraint:comparable
// type constraint T cannot be represented

/// Ordered is a constraint that permits any ordered type: any type
/// that supports the operators < <= >= >.
/// If future releases of Go add new ordered types,
/// this constraint will be modified to include them.
/// 
/// Note that floating-point types may contain NaN ("not-a-number") values.
/// An operator such as == or < will always report false when
/// comparing a NaN value with any other value, NaN or not.
/// See the [Compare] function for a consistent way to compare NaN values.
pub type Ordered