API Differences in TabularData in macOS 15.4

It can be difficult to find what changed in Apple SDKs. These pages are algorithmically generated and show what is new in TabularData in the macOS 15.4 SDK.

Table of Contents

Properties & Constants

ColumnID
public var type: any Any.Type

Initializers

DataFrame
public init<each T>(contentsOfCSVFile url: Foundation.URL, columns: repeat TabularData.ColumnID<each T>, rows: Swift.Range<Swift.Int>? = nil, options: TabularData.CSVReadingOptions = .init()) throws
DataFrame
public init<each T>(csvData data: Foundation.Data, columns: repeat TabularData.ColumnID<each T>, rows: Swift.Range<Swift.Int>? = nil, options: TabularData.CSVReadingOptions = .init()) throws

Enum Cases

CSVReadingError
case unsupportedColumnType(columnIndex: Swift.Int, columnName: Swift.String, type: Swift.String)