Instance Propertymadmachineio.swiftio 0.1.0SwiftIO
rawValue
FileDescriptor.swift:550var rawValue: Int32
var rawValue: Int32
s7SwiftIO14FileDescriptorV10SeekOriginV8rawValues5Int32Vvp
What are these?8WIE8
import SwiftIO
The SwiftIO library allows you to access and control the hardware in an easy way.
struct SeekOrigin
Options for specifying what a file descriptor’s offset is relative to.
struct FileDescriptor
The FileDescriptor struct is used to perform low-level file operations.
@frozen struct Int32
A 32-bit signed integer value type.
init(rawValue: Int32)
static var current: SeekOrigin { get }
Indicates that the offset should be set to the specified number of bytes after the current location.
static var end: SeekOrigin { get }
Indicates that the offset should be set to the size of the file plus the specified number of bytes.
static var start: SeekOrigin { get }
Indicates that the offset should be set to the specified value.