Operatorswift-nio 2.72.0NIOCore
<(_:_:)
CircularBuffer.swift:93static func < (lhs: Index, rhs: Index) -> Bool
static func < (lhs: Index, rhs: Index) -> Bool
import NIOCore
The core abstractions that make up SwiftNIO.
struct Index
An opaque CircularBuffer
index.
struct CircularBuffer<Element>
An automatically expanding ring buffer implementation backed by a ContiguousArray
. Even though this implementation will automatically expand if more elements than initialCapacity
are stored, it’s advantageous to prevent expansions from happening frequently. Expansions will always force an allocation and a copy to happen.
@frozen struct Bool
A value type whose instances are either true
or false
.
static func == (lhs: Index, rhs: Index) -> Bool