Initializermadmachineio.swiftio 0.1.0SwiftIO
init(rawValue:)
FileDescriptor.swift:552init(rawValue: Int32)
init(rawValue: Int32)
s7SwiftIO14FileDescriptorV10SeekOriginV8rawValueAEs5Int32V_tcfc
What are these?4DAQ4
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.
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.
var rawValue: Int32