You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
13 lines
368 B
import Foundation
|
|
|
|
/// Offset object for all the Objects that are written into the buffer
|
|
public struct Offset<T> {
|
|
/// Offset of the object in the buffer
|
|
public var o: UOffset
|
|
/// Returns false if the offset is equal to zero
|
|
public var isEmpty: Bool { return o == 0 }
|
|
|
|
public init(offset: UOffset) { o = offset }
|
|
public init() { o = 0 }
|
|
}
|