# SafetyTier.<(_:_:)

- **Module:** SafetyTier
- **Package:** libtmux-swift
- **Language:** Swift
- **Kind:** function
- **Source:** https://github.com/libtmux/libtmux-swift/blob/f02a4668570e1cc5198c941413750e021f42c214/Sources/LibTmuxMCP/ToolCatalog.swift#L25
- **Page:** https://libtmux.org/reference/swift/safetytier-(_-_-)-9dqn/

```
SafetyTier.<(_:_:)(lhs: SafetyTier, rhs: SafetyTier) -> Bool
```

Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.

This function is the only requirement of the `Comparable` protocol. The
remainder of the relational operator functions are implemented by the
standard library for any type that conforms to `Comparable`.

- Parameters:
  - lhs: A value to compare.
  - rhs: Another value to compare.
