TPCircularBuffer
Objective-C
struct {
void *buffer;
int32_t length;
int32_t tail;
int32_t head;
volatile int32_t fillCount;
}
Swift
struct TPCircularBuffer
Undocumented
-
Undocumented
Declaration
Objective-C
void *buffer
Swift
var buffer: UnsafeMutableRawPointer!
-
Undocumented
Declaration
Objective-C
int32_t length
Swift
var length: Int32
-
Undocumented
Declaration
Objective-C
int32_t tail
Swift
var tail: Int32
-
Undocumented
Declaration
Objective-C
int32_t head
Swift
var head: Int32
-
Undocumented
Declaration
Objective-C
volatile int32_t fillCount
Swift
var fillCount: Int32