Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

TmuxVersion....(_:_:)

Swift
  • Python Unavailable
  • Ruby Unavailable
  • Lua Unavailable
  • TypeScript Unavailable
  • Rust Unavailable
  • Go Unavailable
  • Java Unavailable
  • .NET Unavailable
  • C++ Unavailable
  • Swift

View as Markdown

Declared in
TmuxVersion
Package
libtmux-swift
...(_:_:) ( minimum : Self , maximum : Self ) → ClosedRange<Self>
functionstatic
functionstatic
...(_:_:)

Inherited from Comparable....(_:_:)

Returns a closed range that contains both of its bounds.

Use the closed range operator (..) to create a closed range of any type that conforms to the Comparable protocol. This example creates a `ClosedRange<Character>` from "a" up to, and including, "z".

let lowercase = "a"..."z" print(lowercase.contains("z")) // Prints "true"

  • Parameters:
    • minimum: The lower bound for the range.
    • maximum: The upper bound for the range.
  • Precondition: `minimum <= maximum`.

0 declared, 0 inherited

Esc

Type to search.