Comparable

public extension Comparable
  • Returns the closest value that is contained in the given interval, if the number is already in the interval it returns the same value.

    Declaration

    Swift

    func clamp(min: Self, max: Self) -> Self

    Parameters

    min

    minimum value of the interval to use.

    max

    maximum value of the interval to use.