diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/Csv2Img-Package.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/Csv2Img-Package.xcscheme index 4a82bf1..d2906cb 100644 --- a/.swiftpm/xcode/xcshareddata/xcschemes/Csv2Img-Package.xcscheme +++ b/.swiftpm/xcode/xcshareddata/xcschemes/Csv2Img-Package.xcscheme @@ -48,6 +48,20 @@ ReferencedContainer = "container:"> + + + + + + + + + + + + diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved new file mode 100644 index 0000000..ff3d932 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,25 @@ +{ + "object": { + "pins": [ + { + "package": "swift-argument-parser", + "repositoryURL": "https://github.com/apple/swift-argument-parser", + "state": { + "branch": null, + "revision": "df9ee6676cd5b3bf5b330ec7568a5644f547201b", + "version": "1.1.3" + } + }, + { + "package": "SwiftDocCPlugin", + "repositoryURL": "https://github.com/apple/swift-docc-plugin", + "state": { + "branch": null, + "revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", + "version": "1.0.0" + } + } + ] + }, + "version": 1 +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AccentColor.colorset/Contents.json b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..532cd72 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,63 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "16x16" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "16x16" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "32x32" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "32x32" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "128x128" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "128x128" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "256x256" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "256x256" + }, + { + "idiom" : "mac", + "scale" : "1x", + "size" : "512x512" + }, + { + "idiom" : "mac", + "scale" : "2x", + "size" : "512x512" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/Contents.json b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift new file mode 100644 index 0000000..6d17a8c --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift @@ -0,0 +1,43 @@ +// +// ContentView.swift +// CsvBuilderExample +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import SwiftUI +import CsvBuilder + +struct ContentView: View { + + @State private var composition: ExampleComposition = .init() + @State private var image: CGImage? + + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundColor(.accentColor) + Text("Hello, world!") + if let image = image { + Image(nsImage: NSImage(cgImage: image, size: CGSize(width: image.width, height: image.height))) + .resizable() + .aspectRatio(contentMode: .fit) + } + } + .padding() + .task { + composition.ages.append("99") + composition.names.append("Yamada") + let csv = try! composition.build() + let data = try! await csv.generate(fontSize: 20, exportType: .png) + self.image = data.base as! CGImage + } + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExample.entitlements b/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExample.entitlements new file mode 100644 index 0000000..f2ef3ae --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExample.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.files.user-selected.read-only + + + diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExampleApp.swift b/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExampleApp.swift new file mode 100644 index 0000000..cf20df3 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExampleApp.swift @@ -0,0 +1,17 @@ +// +// CsvBuilderExampleApp.swift +// CsvBuilderExample +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import SwiftUI + +@main +struct CsvBuilderExampleApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/CustomCsvBuilder.swift b/Examples/CsvBuilderExample/CsvBuilderExample/CustomCsvBuilder.swift new file mode 100644 index 0000000..d103815 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/CustomCsvBuilder.swift @@ -0,0 +1,9 @@ +// +// CustomCsvBuilder.swift +// CsvBuilderExample +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import Foundation +import CsvBuilder diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/Preview Content/Preview Assets.xcassets/Contents.json b/Examples/CsvBuilderExample/CsvBuilderExample/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Package.swift b/Package.swift index 1b9b3d7..8c7ec92 100644 --- a/Package.swift +++ b/Package.swift @@ -20,6 +20,10 @@ let package = Package( name: "Csv2Img", targets: ["Csv2Img"] ), + .library( + name: "CsvBuilder", + targets: ["CsvBuilder"] + ), .executable( name: "Csv2ImgCmd", targets: ["Csv2ImgCmd"] @@ -29,7 +33,7 @@ let package = Package( // Dependencies declare other packages that this package depends on. // .package(url: /* package url */, from: "1.0.0"), argumentParser, - docc, + docc ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -39,7 +43,18 @@ let package = Package( dependencies: []), .testTarget( name: "Csv2ImgTests", - dependencies: ["Csv2Img"]), + dependencies: ["Csv2Img"] + ), + .target( + name: "CsvBuilder", + dependencies: [ + "Csv2Img" + ] + ), + .testTarget( + name: "CsvBuilderTests", + dependencies: ["CsvBuilder"] + ), .executableTarget( name: "Csv2ImgCmd", dependencies: [ @@ -49,6 +64,6 @@ let package = Package( package: "swift-argument-parser" ) ] - ) + ), ] ) diff --git a/README.md b/README.md index ede81f2..840b5c0 100644 --- a/README.md +++ b/README.md @@ -103,11 +103,46 @@ let data = try await csv.generate(fontSize: 12, exportType: .png) | 10 | 11 | 12 | ``` - #### Output Image ![sample](https://user-images.githubusercontent.com/44002126/186432783-cd5eecdc-bcf6-4c0c-849e-9b4d3da246e1.png) +# CsvBuilder (Helper Library for Csv2Img) + +A helper library to generate `Csv` in Csv2Img library. + +## How to use + +1. Define custom type which conform to `CsvComposition`. + +- Note that `@CsvRows` is a propertyWrapper in Csv2Img library so you need to import Csv2Img. + +```swift +import Foundation +import Csv2Img + + +public struct ExampleComposition: CsvComposition { + @CsvRows(column: "age") + public var ages: [String] + + @CsvRows(column: "name") + public var names: [String] + + public init() { } +} +``` + +2. Build `Csv` + +```swift +let composition: ExampleComposition = .init() +let csv = try! composition.build() +``` + +| Result | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| スクリーンショット 2022-08-25 17 14 45 | # Csv2ImgCmd (CLI) @@ -133,7 +168,6 @@ https://raw.githubusercontent.com/fummicc1/csv2img/main/Sources/Csv2ImgCmd/Resou output.png ``` - # Contributing Pull requests, bug reports and feature requests are welcome 🚀 diff --git a/Sources/Csv2Img/Csv.swift b/Sources/Csv2Img/Csv.swift index 6f83c2c..b435c31 100644 --- a/Sources/Csv2Img/Csv.swift +++ b/Sources/Csv2Img/Csv.swift @@ -36,7 +36,7 @@ public actor Csv { /// `Row` is array of row whose type is ``Row`` public init( separator: String=",", - rawString: String = "", + rawString: String? = nil, columnNames: [Csv.ColumnName] = [], rows: [Csv.Row] = [], exportType: ExportType = .png @@ -101,7 +101,7 @@ public actor Csv { private let pdfMarker: PdfMaker /// `rawString` is original String read from Resource (either Local or Network) - public var rawString: String + public var rawString: String? /// `exportType` determines export type. Please choose ``ExportType.png`` or ``ExportType.pdf``. public var exportType: ExportType diff --git a/Sources/Csv2Img/RowWrapper.swift b/Sources/Csv2Img/RowWrapper.swift new file mode 100644 index 0000000..5cc5c4f --- /dev/null +++ b/Sources/Csv2Img/RowWrapper.swift @@ -0,0 +1,20 @@ +// +// CsvRows.swift +// +// +// Created by Fumiya Tanaka on 2022/08/24. +// + +import Foundation + + +@propertyWrapper +public struct CsvRows { + public var wrappedValue: [String] + public var column: String + + public init(column: String) { + self.column = column + self.wrappedValue = [] + } +} diff --git a/Sources/CsvBuilder/CsvBuilder.swift b/Sources/CsvBuilder/CsvBuilder.swift new file mode 100644 index 0000000..b9bb3fe --- /dev/null +++ b/Sources/CsvBuilder/CsvBuilder.swift @@ -0,0 +1,84 @@ +// +// CsvBuilder.swift +// +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import Foundation +import Csv2Img + +public enum CsvBuilderError: Error { +} + +public enum CsvBuilder { + + static let rowRegex: String = #"^CsvRows\(wrappedValue: (\[.*\]), column: \"(.+)\"\)$"# + + public static func build(composition: CsvComposition) throws -> Csv { + let mirror = Mirror(reflecting: composition) + let children = mirror.children + + var elements: [CsvCompositionElement] = [] + var rowSize: Int = 0 + + for child in children { + let value = String(describing: child.value) + guard let _ = child.label else { + continue + } + + let rowExp = try NSRegularExpression(pattern: rowRegex) + let rowMatches = rowExp.matches( + in: value, + range: NSRange(location: 0, length: value.count) + ) + if !rowMatches.isEmpty { + if let result = rowMatches.last { + if let rowRange = Range(result.range(at: 1), in: value), let columnRange = Range(result.range(at: 2), in: value) { + let columnName = String(value[columnRange]) + let rows = trim(str: String(value[rowRange])) + let column = CsvCompositionElement( + column: columnName, + rows: rows + ) + rowSize = max(rowSize, rows.count) + elements.append(column) + } + } + } + } + if elements.isEmpty { + throw Csv.Error.emptyData + } + let columnNames: [Csv.ColumnName] = elements.map(\.columnName).map { Csv.ColumnName(value: $0) } + + var rows: [Csv.Row] = [] + let flattedRows = elements.map(\.rows).flatMap { $0 } + for i in 0.. [CsvCompositionElement.Row] { + var str = str + let head = "\"" + let tail = ",\"" + str = str + .replacingOccurrences(of: "[", with: "") + .replacingOccurrences(of: "]", with: "") + str = str.replacingOccurrences(of: head, with: "") + str = str.replacingOccurrences(of: tail, with: "\n") + let rows = str.split(separator: "\n").enumerated().map { CsvCompositionElement.Row(index: $0.offset, value: String($0.element)) } + return rows + } +} diff --git a/Sources/CsvBuilder/CsvComposition.swift b/Sources/CsvBuilder/CsvComposition.swift new file mode 100644 index 0000000..3c2174d --- /dev/null +++ b/Sources/CsvBuilder/CsvComposition.swift @@ -0,0 +1,19 @@ +// +// CsvComposition.swift +// +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import Foundation +import Csv2Img + +public protocol CsvComposition { + func build() throws -> Csv +} + +extension CsvComposition { + public func build() throws -> Csv { + try CsvBuilder.build(composition: self) + } +} diff --git a/Sources/CsvBuilder/CsvCompositionElement.swift b/Sources/CsvBuilder/CsvCompositionElement.swift new file mode 100644 index 0000000..cbdc53e --- /dev/null +++ b/Sources/CsvBuilder/CsvCompositionElement.swift @@ -0,0 +1,24 @@ +// +// CsvCompositionElement.swift +// +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import Foundation + + +struct CsvCompositionElement { + var columnName: String + var rows: [Row] + + struct Row { + let index: Int + let value: String + } + + init(column: String, rows: [Row]) { + self.columnName = column + self.rows = rows + } +} diff --git a/Sources/CsvBuilder/Example.swift b/Sources/CsvBuilder/Example.swift new file mode 100644 index 0000000..9011dd8 --- /dev/null +++ b/Sources/CsvBuilder/Example.swift @@ -0,0 +1,20 @@ +// +// Example.swift +// +// +// Created by Fumiya Tanaka on 2022/08/24. +// + +import Foundation +import Csv2Img + + +public struct ExampleComposition: CsvComposition { + @CsvRows(column: "age") + public var ages: [String] + + @CsvRows(column: "name") + public var names: [String] + + public init() { } +} diff --git a/Tests/CsvBuilderTests/CsvBuilderTests.swift b/Tests/CsvBuilderTests/CsvBuilderTests.swift new file mode 100644 index 0000000..d855f37 --- /dev/null +++ b/Tests/CsvBuilderTests/CsvBuilderTests.swift @@ -0,0 +1,11 @@ +// +// CsvBuilderTests.swift +// +// +// Created by Fumiya Tanaka on 2022/08/24. +// + +import XCTest + +final class CsvBuilderTests: XCTestCase { +} diff --git a/docs/data/documentation/csv2img.json b/docs/data/documentation/csv2img.json index c8e01ce..5ce9c07 100644 --- a/docs/data/documentation/csv2img.json +++ b/docs/data/documentation/csv2img.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/csv2img"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img","interfaceLanguage":"swift"},"topicSections":[{"title":"Classes","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]},{"title":"Protocols","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]},{"title":"Structures","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]},{"title":"Enumerations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"Csv2Img","title":"Csv2Img","symbolKind":"module","role":"collection","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[[]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/csv2img"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img","interfaceLanguage":"swift"},"topicSections":[{"title":"Classes","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]},{"title":"Protocols","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]},{"title":"Structures","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]},{"title":"Enumerations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"Csv2Img","title":"Csv2Img","symbolKind":"module","role":"collection","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[[]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvRows":{"role":"symbol","title":"CsvRows","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvRows"}],"url":"\/documentation\/csv2img\/csvrows"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/anycsvexportable.json b/docs/data/documentation/csv2img/anycsvexportable.json index 89ffeaf..199a94d 100644 --- a/docs/data/documentation/csv2img/anycsvexportable.json +++ b/docs/data/documentation/csv2img/anycsvexportable.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"title":"AnyCsvExportable","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:7Csv2Img16AnyCsvExportableC","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/base":{"role":"symbol","title":"base","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/base"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/init(_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"title":"AnyCsvExportable","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:7Csv2Img16AnyCsvExportableC","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/base":{"role":"symbol","title":"base","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/base"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/init(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/anycsvexportable/base.json b/docs/data/documentation/csv2img/anycsvexportable/base.json index 8264f72..fc10288 100644 --- a/docs/data/documentation/csv2img/anycsvexportable/base.json +++ b/docs/data/documentation/csv2img/anycsvexportable/base.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable\/base"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"title":"base","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img16AnyCsvExportableC4baseAA0dE0_pvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/base":{"role":"symbol","title":"base","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/base"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable\/base"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"title":"base","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img16AnyCsvExportableC4baseAA0dE0_pvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/base":{"role":"symbol","title":"base","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/base","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/base"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/anycsvexportable/init(_:).json b/docs/data/documentation/csv2img/anycsvexportable/init(_:).json index 3ac9ee0..eaceab9 100644 --- a/docs/data/documentation/csv2img/anycsvexportable/init(_:).json +++ b/docs/data/documentation/csv2img/anycsvexportable/init(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"csvExportable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable\/init(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"title":"init(_:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img16AnyCsvExportableCyAcA0dE0_pcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/init(_:)"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"csvExportable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/anycsvexportable\/init(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"title":"init(_:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img16AnyCsvExportableCyAcA0dE0_pcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/anycsvexportable\/init(_:)"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv.json b/docs/data/documentation/csv2img/csv.json index b5c8e67..87f1974 100644 --- a/docs/data/documentation/csv2img/csv.json +++ b/docs/data/documentation/csv2img/csv.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"actor"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is a struct to store information to parse csv into table."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" automatically recognize first row as column and others as rows."}]},{"type":"codeListing","syntax":"swift","code":["let rawCsv = \"\"\"","a,b,c","1,2,3","4,5,6","7,8,9","10,11,12","\"\"\"","let csv = Csv.loadFromString(rawCsv)","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s8SendableP","doc:\/\/Csv2Img\/ScA","doc:\/\/Csv2Img\/12_Concurrency8AnyActorP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Csv data structure"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"title":"Csv","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:7Csv2Img3CsvC","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"Csv"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]},{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoadingPublisher","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator"]},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)"]},{"title":"Type Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)"]},{"title":"Enumerations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/init(separator:rawString:columnNames:rows:exportType:)":{"role":"symbol","title":"init(separator:rawString:columnNames:rows:exportType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"initialization"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"},"doc://Csv2Img/ScA":{"type":"unresolvable","title":"_Concurrency.Actor","identifier":"doc:\/\/Csv2Img\/ScA"},"doc://Csv2Img/documentation/Csv2Img/Csv/rawString":{"role":"symbol","title":"rawString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rawstring"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromNetwork(_:separator:exportType:)":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"},"doc://Csv2Img/12_Concurrency8AnyActorP":{"type":"unresolvable","title":"_Concurrency.AnyActor","identifier":"doc:\/\/Csv2Img\/12_Concurrency8AnyActorP"},"doc://Csv2Img/documentation/Csv2Img/Csv/isLoadingPublisher":{"role":"symbol","title":"isLoadingPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoadingPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoadingPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloadingpublisher"},"doc://Csv2Img/documentation/Csv2Img/Csv/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/separator"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/rows":{"role":"symbol","title":"rows","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rows"},"doc://Csv2Img/documentation/Csv2Img/Csv/progressPublisher":{"role":"symbol","title":"progressPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progresspublisher"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/progress":{"role":"symbol","title":"progress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"progress stores current completeFraction of convert"},{"type":"text","text":" "},{"type":"text","text":"Value is in "},{"type":"codeVoice","code":"0...1"},{"type":"text","text":" with "},{"type":"codeVoice","code":"Double"},{"type":"text","text":" type"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progress"},"doc://Csv2Img/documentation/Csv2Img/Csv/generate(fontSize:exportType:)":{"role":"symbol","title":"generate(fontSize:exportType:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/exportType-swift.property":{"role":"symbol","title":"exportType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.property"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromString(_:separator:maxLength:exportType:)":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/write(to:)":{"role":"symbol","title":"write(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/write(to:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/isLoading":{"role":"symbol","title":"isLoading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloading"},"doc://Csv2Img/documentation/Csv2Img/Csv/columnNames":{"role":"symbol","title":"columnNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnnames"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"actor"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is a struct to store information to parse csv into table."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" automatically recognize first row as column and others as rows."}]},{"type":"codeListing","syntax":"swift","code":["let rawCsv = \"\"\"","a,b,c","1,2,3","4,5,6","7,8,9","10,11,12","\"\"\"","let csv = Csv.loadFromString(rawCsv)","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s8SendableP","doc:\/\/Csv2Img\/ScA","doc:\/\/Csv2Img\/12_Concurrency8AnyActorP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Csv data structure"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"title":"Csv","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:7Csv2Img3CsvC","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"Csv"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]},{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoadingPublisher","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator"]},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)"]},{"title":"Type Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)"]},{"title":"Enumerations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/rows":{"role":"symbol","title":"rows","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rows"},"doc://Csv2Img/documentation/Csv2Img/Csv/generate(fontSize:exportType:)":{"role":"symbol","title":"generate(fontSize:exportType:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/exportType-swift.property":{"role":"symbol","title":"exportType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.property"},"doc://Csv2Img/documentation/Csv2Img/Csv/progressPublisher":{"role":"symbol","title":"progressPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progresspublisher"},"doc://Csv2Img/ScA":{"type":"unresolvable","title":"_Concurrency.Actor","identifier":"doc:\/\/Csv2Img\/ScA"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/write(to:)":{"role":"symbol","title":"write(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/write(to:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/isLoadingPublisher":{"role":"symbol","title":"isLoadingPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoadingPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoadingPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloadingpublisher"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/columnNames":{"role":"symbol","title":"columnNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnnames"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img/Csv/progress":{"role":"symbol","title":"progress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"progress stores current completeFraction of convert"},{"type":"text","text":" "},{"type":"text","text":"Value is in "},{"type":"codeVoice","code":"0...1"},{"type":"text","text":" with "},{"type":"codeVoice","code":"Double"},{"type":"text","text":" type"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progress"},"doc://Csv2Img/12_Concurrency8AnyActorP":{"type":"unresolvable","title":"_Concurrency.AnyActor","identifier":"doc:\/\/Csv2Img\/12_Concurrency8AnyActorP"},"doc://Csv2Img/documentation/Csv2Img/Csv/isLoading":{"role":"symbol","title":"isLoading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloading"},"doc://Csv2Img/documentation/Csv2Img/Csv/rawString":{"role":"symbol","title":"rawString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rawstring"},"doc://Csv2Img/documentation/Csv2Img/Csv/init(separator:rawString:columnNames:rows:exportType:)":{"role":"symbol","title":"init(separator:rawString:columnNames:rows:exportType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"initialization"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromString(_:separator:maxLength:exportType:)":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/separator"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromNetwork(_:separator:exportType:)":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/columnname.json b/docs/data/documentation/csv2img/csv/columnname.json index 53371c8..2ce828a 100644 --- a/docs/data/documentation/csv2img/csv/columnname.json +++ b/docs/data/documentation/csv2img/csv/columnname.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Column is at the first group of hrizontally separated groups."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"following lines are treated as "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"eg."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 2 3 4"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"5 6 7 8"},{"type":"text","text":" "},{"type":"text","text":"→ColumnName is [1, 2, 3, 4] and Row is [5, 6, 7, 8]."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because this class is usually initialized via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":", you do not have to take care about "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":" in detail."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"role":"symbol","title":"Csv.ColumnName","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"symbolKind":"struct","externalID":"s:7Csv2Img3CsvC10ColumnNameV","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value"]}],"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/init(value:)":{"role":"symbol","title":"init(value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/init(value:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/value"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Column is at the first group of hrizontally separated groups."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"following lines are treated as "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"eg."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 2 3 4"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"5 6 7 8"},{"type":"text","text":" "},{"type":"text","text":"→ColumnName is [1, 2, 3, 4] and Row is [5, 6, 7, 8]."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because this class is usually initialized via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":", you do not have to take care about "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":" in detail."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"role":"symbol","title":"Csv.ColumnName","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"symbolKind":"struct","externalID":"s:7Csv2Img3CsvC10ColumnNameV","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/init(value:)":{"role":"symbol","title":"init(value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/init(value:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/value"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/columnname/init(value:).json b/docs/data/documentation/csv2img/csv/columnname/init(value:).json index d30833b..8eb3793 100644 --- a/docs/data/documentation/csv2img/csv/columnname/init(value:).json +++ b/docs/data/documentation/csv2img/csv/columnname/init(value:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname\/init(value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC10ColumnNameV5valueAESS_tcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/init(value:)":{"role":"symbol","title":"init(value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/init(value:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname\/init(value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(value:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC10ColumnNameV5valueAESS_tcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/init(value:)":{"role":"symbol","title":"init(value:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/init(value:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/init(value:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/columnname/value.json b/docs/data/documentation/csv2img/csv/columnname/value.json index 7232517..1145d1b 100644 --- a/docs/data/documentation/csv2img/csv/columnname/value.json +++ b/docs/data/documentation/csv2img/csv/columnname/value.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ColumnNameV5valueSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/value"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnname\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ColumnNameV5valueSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName\/value","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnname\/value"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/columnnames.json b/docs/data/documentation/csv2img/csv/columnnames.json index e86eb0a..c9a1e38 100644 --- a/docs/data/documentation/csv2img/csv/columnnames.json +++ b/docs/data/documentation/csv2img/csv/columnnames.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnnames"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"title":"columnNames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC11columnNamesSayAC10ColumnNameVGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/columnNames":{"role":"symbol","title":"columnNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnnames"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/columnnames"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"title":"columnNames","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC11columnNamesSayAC10ColumnNameVGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/columnNames":{"role":"symbol","title":"columnNames","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of column name with type "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/columnNames","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/columnnames"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error.json b/docs/data/documentation/csv2img/csv/error.json index afafdee..e9776d1 100644 --- a/docs/data/documentation/csv2img/csv/error.json +++ b/docs/data/documentation/csv2img/csv/error.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"Error"}],"role":"symbol","title":"Csv.Error","roleHeading":"Enumeration","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"symbolKind":"enum","externalID":"s:7Csv2Img3CsvC5ErrorO","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidDownloadResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidDownloadResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/underlying(_:)":{"role":"symbol","title":"Csv.Error.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/underlying(_:)"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/cannotAccessFile(url:)":{"role":"symbol","title":"Csv.Error.cannotAccessFile(url:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidExportType(_:)":{"role":"symbol","title":"Csv.Error.invalidExportType(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/emptyData":{"role":"symbol","title":"Csv.Error.emptyData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/emptydata"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/workInProgress":{"role":"symbol","title":"Csv.Error.workInProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/workinprogress"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidLocalResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidLocalResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"Error"}],"role":"symbol","title":"Csv.Error","roleHeading":"Enumeration","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"symbolKind":"enum","externalID":"s:7Csv2Img3CsvC5ErrorO","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations"],"generated":true}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/cannotAccessFile(url:)":{"role":"symbol","title":"Csv.Error.cannotAccessFile(url:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidExportType(_:)":{"role":"symbol","title":"Csv.Error.invalidExportType(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/underlying(_:)":{"role":"symbol","title":"Csv.Error.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/workInProgress":{"role":"symbol","title":"Csv.Error.workInProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/workinprogress"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidLocalResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidLocalResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidDownloadResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidDownloadResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/emptyData":{"role":"symbol","title":"Csv.Error.emptyData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/emptydata"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/error-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/cannotaccessfile(url:).json b/docs/data/documentation/csv2img/csv/error/cannotaccessfile(url:).json index f7fc97d..0f31041 100644 --- a/docs/data/documentation/csv2img/csv/error/cannotaccessfile(url:).json +++ b/docs/data/documentation/csv2img/csv/error/cannotaccessfile(url:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"Csv.Error.cannotAccessFile(url:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO16cannotAccessFileyAESS_tcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/cannotAccessFile(url:)":{"role":"symbol","title":"Csv.Error.cannotAccessFile(url:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"Csv.Error.cannotAccessFile(url:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO16cannotAccessFileyAESS_tcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/cannotAccessFile(url:)":{"role":"symbol","title":"Csv.Error.cannotAccessFile(url:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"cannotAccessFile"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If file is not accessible due to security issue."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/cannotAccessFile(url:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/emptydata.json b/docs/data/documentation/csv2img/csv/error/emptydata.json index 90afa5b..5e079ad 100644 --- a/docs/data/documentation/csv2img/csv/error/emptydata.json +++ b/docs/data/documentation/csv2img/csv/error/emptydata.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/emptydata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"title":"Csv.Error.emptyData","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO9emptyDatayA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/emptyData":{"role":"symbol","title":"Csv.Error.emptyData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/emptydata"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/emptydata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"title":"Csv.Error.emptyData","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO9emptyDatayA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/emptyData":{"role":"symbol","title":"Csv.Error.emptyData","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyData"}],"abstract":[{"type":"text","text":"Both columns and rows are empty"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/emptyData","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/emptydata"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/error-implementations.json b/docs/data/documentation/csv2img/csv/error/error-implementations.json index 5c34e59..c1f9157 100644 --- a/docs/data/documentation/csv2img/csv/error/error-implementations.json +++ b/docs/data/documentation/csv2img/csv/error/error-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/invaliddownloadresource(url:data:).json b/docs/data/documentation/csv2img/csv/error/invaliddownloadresource(url:data:).json index e189f13..9517f92 100644 --- a/docs/data/documentation/csv2img/csv/error/invaliddownloadresource(url:data:).json +++ b/docs/data/documentation/csv2img/csv/error/invaliddownloadresource(url:data:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidDownloadResource(url:data:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO23invalidDownloadResourceyAESS_10Foundation4DataVtcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidDownloadResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidDownloadResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidDownloadResource(url:data:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO23invalidDownloadResourceyAESS_10Foundation4DataVtcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidDownloadResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidDownloadResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidDownloadResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified network url is invalid or failed to download csv data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidDownloadResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/invalidexporttype(_:).json b/docs/data/documentation/csv2img/csv/error/invalidexporttype(_:).json index c57f493..b406a0e 100644 --- a/docs/data/documentation/csv2img/csv/error/invalidexporttype(_:).json +++ b/docs/data/documentation/csv2img/csv/error/invalidexporttype(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidExportType(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO17invalidExportTypeyAeC0fG0OcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidExportType(_:)":{"role":"symbol","title":"Csv.Error.invalidExportType(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidExportType(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO17invalidExportTypeyAeC0fG0OcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidExportType(_:)":{"role":"symbol","title":"Csv.Error.invalidExportType(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidExportType"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"given "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is invalid."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidExportType(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/invalidlocalresource(url:data:).json b/docs/data/documentation/csv2img/csv/error/invalidlocalresource(url:data:).json index 7925a84..93aaab6 100644 --- a/docs/data/documentation/csv2img/csv/error/invalidlocalresource(url:data:).json +++ b/docs/data/documentation/csv2img/csv/error/invalidlocalresource(url:data:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidLocalResource(url:data:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO20invalidLocalResourceyAESS_10Foundation4DataVtcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidLocalResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidLocalResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"title":"Csv.Error.invalidLocalResource(url:data:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO20invalidLocalResourceyAESS_10Foundation4DataVtcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/invalidLocalResource(url:data:)":{"role":"symbol","title":"Csv.Error.invalidLocalResource(url:data:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidLocalResource"},{"kind":"text","text":"("},{"kind":"externalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Specified local url is invalid (file may not exist)."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/invalidLocalResource(url:data:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/localizeddescription.json b/docs/data/documentation/csv2img/csv/error/localizeddescription.json index ea361fe..952e71d 100644 --- a/docs/data/documentation/csv2img/csv/error/localizeddescription.json +++ b/docs/data/documentation/csv2img/csv/error/localizeddescription.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img3CsvC5ErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img3CsvC5ErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/error-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/underlying(_:).json b/docs/data/documentation/csv2img/csv/error/underlying(_:).json index 31d387f..96a2900 100644 --- a/docs/data/documentation/csv2img/csv/error/underlying(_:).json +++ b/docs/data/documentation/csv2img/csv/error/underlying(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/underlying(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"Csv.Error.underlying(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO10underlyingyAEsAD_pSgcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/underlying(_:)":{"role":"symbol","title":"Csv.Error.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/underlying(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"Csv.Error.underlying(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO10underlyingyAEsAD_pSgcAEmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/underlying(_:)":{"role":"symbol","title":"Csv.Error.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/error/workinprogress.json b/docs/data/documentation/csv2img/csv/error/workinprogress.json index da869b4..63bcb58 100644 --- a/docs/data/documentation/csv2img/csv/error/workinprogress.json +++ b/docs/data/documentation/csv2img/csv/error/workinprogress.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/workinprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"title":"Csv.Error.workInProgress","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO14workInProgressyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error/workInProgress":{"role":"symbol","title":"Csv.Error.workInProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/workinprogress"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/error\/workinprogress"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"title":"Csv.Error.workInProgress","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC5ErrorO14workInProgressyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Error/workInProgress":{"role":"symbol","title":"Csv.Error.workInProgress","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"workInProgress"}],"abstract":[{"type":"text","text":"Csv denied execution because it is generating another contents."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error\/workInProgress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/error\/workinprogress"},"doc://Csv2Img/documentation/Csv2Img/Csv/Error":{"role":"symbol","title":"Csv.Error","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Error"}],"abstract":[{"type":"codeVoice","code":"Error"},{"type":"text","text":" related with Csv implmentation."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Error","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Error"}],"url":"\/documentation\/csv2img\/csv\/error"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum.json index e00a066..e127e48 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/SQ","doc:\/\/Csv2Img\/SH","doc:\/\/Csv2Img\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"role":"symbol","title":"Csv.ExportType","roleHeading":"Enumeration","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"symbolKind":"enum","externalID":"s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png"]},{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/png":{"role":"symbol","title":"Csv.ExportType.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/utType":{"role":"symbol","title":"utType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/Csv2Img\/SQ"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/pdf":{"role":"symbol","title":"Csv.ExportType.pdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/Csv2Img\/SH"},"doc://Csv2Img/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/Csv2Img\/SY"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/SQ","doc:\/\/Csv2Img\/SH","doc:\/\/Csv2Img\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"role":"symbol","title":"Csv.ExportType","roleHeading":"Enumeration","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"symbolKind":"enum","externalID":"s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png"]},{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"},"doc://Csv2Img/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/Csv2Img\/SQ"},"doc://Csv2Img/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/Csv2Img\/SY"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/Csv2Img\/SH"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/png":{"role":"symbol","title":"Csv.ExportType.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/utType":{"role":"symbol","title":"utType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/pdf":{"role":"symbol","title":"Csv.ExportType.pdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/!=(_:_:).json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/!=(_:_:).json index cdc16b9..9598157 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/!=(_:_:).json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/!=(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/equatable-implementations.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/equatable-implementations.json index e657849..8b5df02 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/equatable-implementations.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/equatable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/fileextension.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/fileextension.json index 95b4f23..dd5f8cc 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/fileextension.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/fileextension.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"fileExtension","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ExportTypeO13fileExtensionSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"fileExtension","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ExportTypeO13fileExtensionSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hash(into:).json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hash(into:).json index c9f6926..2bdd505 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hash(into:).json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hash(into:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hashvalue.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hashvalue.json index fe4b911..f04b2b3 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hashvalue.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/hashvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:7Csv2Img3CsvC10ExportTypeO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/init(rawvalue:).json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/init(rawvalue:).json index 8f8ab08..f4103cf 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/init(rawvalue:).json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/init(rawvalue:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC10ExportTypeO8rawValueAESgSS_tcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC10ExportTypeO8rawValueAESgSS_tcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/pdf.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/pdf.json index a75ef57..bb3a8cb 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/pdf.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/pdf.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"title":"Csv.ExportType.pdf","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC10ExportTypeO3pdfyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/pdf":{"role":"symbol","title":"Csv.ExportType.pdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"title":"Csv.ExportType.pdf","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC10ExportTypeO3pdfyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/pdf":{"role":"symbol","title":"Csv.ExportType.pdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"pdf"}],"abstract":[{"type":"codeVoice","code":"pdf"},{"type":"text","text":" output (Work In Progress)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/pdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/png.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/png.json index ba2480b..80c7779 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/png.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/png.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"title":"Csv.ExportType.png","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC10ExportTypeO3pngyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/png":{"role":"symbol","title":"Csv.ExportType.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"title":"Csv.ExportType.png","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img3CsvC10ExportTypeO3pngyA2EmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/png":{"role":"symbol","title":"Csv.ExportType.png","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"png"}],"abstract":[{"type":"codeVoice","code":"png"},{"type":"text","text":" output"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/png","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/rawrepresentable-implementations.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/rawrepresentable-implementations.json index 96249bf..eda038e 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/rawrepresentable-implementations.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/rawrepresentable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/uttype.json b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/uttype.json index 1891b23..bb5c231 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.enum/uttype.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.enum/uttype.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"title":"utType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ExportTypeO02utE007UniformE11Identifiers6UTTypeVvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/utType":{"role":"symbol","title":"utType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"title":"utType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10ExportTypeO02utE007UniformE11Identifiers6UTTypeVvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum/utType":{"role":"symbol","title":"utType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"utType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum\/utType","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/exporttype-swift.property.json b/docs/data/documentation/csv2img/csv/exporttype-swift.property.json index 30febf2..72b4c80 100644 --- a/docs/data/documentation/csv2img/csv/exporttype-swift.property.json +++ b/docs/data/documentation/csv2img/csv/exporttype-swift.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"title":"exportType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10exportTypeAC06ExportE0Ovp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/exportType-swift.property":{"role":"symbol","title":"exportType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.property"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/exporttype-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"title":"exportType","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC10exportTypeAC06ExportE0Ovp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/exportType-swift.property":{"role":"symbol","title":"exportType","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"}],"abstract":[{"type":"codeVoice","code":"exportType"},{"type":"text","text":" determines export type. Please choose "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":" or "},{"type":"codeVoice","code":"ExportType.pdf"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/exportType-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/exporttype-swift.property"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/generate(fontsize:exporttype:).json b/docs/data/documentation/csv2img/csv/generate(fontsize:exporttype:).json index 866f922..e5f9b2f 100644 --- a/docs/data/documentation/csv2img/csv/generate(fontsize:exporttype:).json +++ b/docs/data/documentation/csv2img/csv/generate(fontsize:exporttype:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC","text":"AnyCsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable"},{"type":"text","text":". (either "},{"type":"codeVoice","code":"CGImage"},{"type":"text","text":" or "},{"type":"codeVoice","code":"PdfDocument"},{"type":"text","text":")."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"fontSize: Determine the fontsize of characters in output-table image."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"exportType:Determine file-extension. Type is "},{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" and default value is "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Throws "},{"type":"codeVoice","code":"Csv.Error"},{"type":"text","text":"."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"kind":"symbol","metadata":{"role":"symbol","title":"generate(fontSize:exportType:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC8generate8fontSize10exportTypeAA03AnyC10ExportableC14CoreFoundation7CGFloatVSg_AC06ExportH0OtYaKF","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/generate(fontSize:exportType:)":{"role":"symbol","title":"generate(fontSize:exportType:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC","text":"AnyCsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable"},{"type":"text","text":". (either "},{"type":"codeVoice","code":"CGImage"},{"type":"text","text":" or "},{"type":"codeVoice","code":"PdfDocument"},{"type":"text","text":")."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"fontSize: Determine the fontsize of characters in output-table image."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"exportType:Determine file-extension. Type is "},{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" and default value is "},{"type":"codeVoice","code":"ExportType.png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Throws "},{"type":"codeVoice","code":"Csv.Error"},{"type":"text","text":"."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"kind":"symbol","metadata":{"role":"symbol","title":"generate(fontSize:exportType:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC8generate8fontSize10exportTypeAA03AnyC10ExportableC14CoreFoundation7CGFloatVSg_AC06ExportH0OtYaKF","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/AnyCsvExportable":{"role":"symbol","title":"AnyCsvExportable","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AnyCsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/AnyCsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AnyCsvExportable"}],"url":"\/documentation\/csv2img\/anycsvexportable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/generate(fontSize:exportType:)":{"role":"symbol","title":"generate(fontSize:exportType:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"generate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fontSize"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"async"},{"kind":"text","text":" "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"AnyCsvExportable","preciseIdentifier":"s:7Csv2Img16AnyCsvExportableC"}],"abstract":[{"type":"text","text":"Generate Output (file-type is determined by "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" parameter)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/generate(fontSize:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/init(separator:rawstring:columnnames:rows:exporttype:).json b/docs/data/documentation/csv2img/csv/init(separator:rawstring:columnnames:rows:exporttype:).json index 7161835..131e045 100644 --- a/docs/data/documentation/csv2img/csv/init(separator:rawstring:columnnames:rows:exporttype:).json +++ b/docs/data/documentation/csv2img/csv/init(separator:rawstring:columnnames:rows:exporttype:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \"\", "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"] = [], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"] = [], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"separator"},{"type":"text","text":" is applied to each row and generate items per row."},{"type":"text","text":" "},{"type":"codeVoice","code":"columnNames"},{"type":"text","text":" is array of column whose type is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"codeVoice","code":"Row"},{"type":"text","text":" is array of row whose type is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"initialization"}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"title":"init(separator:rawString:columnNames:rows:exportType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC9separator9rawString11columnNames4rows10exportTypeACSS_SSSayAC10ColumnNameVGSayAC3RowVGAC06ExportK0Otcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/init(separator:rawString:columnNames:rows:exportType:)":{"role":"symbol","title":"init(separator:rawString:columnNames:rows:exportType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"initialization"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"] = [], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"] = [], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"separator"},{"type":"text","text":" is applied to each row and generate items per row."},{"type":"text","text":" "},{"type":"codeVoice","code":"columnNames"},{"type":"text","text":" is array of column whose type is "},{"type":"codeVoice","code":"String"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"codeVoice","code":"Row"},{"type":"text","text":" is array of row whose type is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"initialization"}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"title":"init(separator:rawString:columnNames:rows:exportType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC9separator9rawString11columnNames4rows10exportTypeACSS_SSSgSayAC10ColumnNameVGSayAC3RowVGAC06ExportK0Otcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/init(separator:rawString:columnNames:rows:exportType:)":{"role":"symbol","title":"init(separator:rawString:columnNames:rows:exportType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"columnNames"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"initialization"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/init(separator:rawString:columnNames:rows:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/isloading.json b/docs/data/documentation/csv2img/csv/isloading.json index bb5aa07..7025032 100644 --- a/docs/data/documentation/csv2img/csv/isloading.json +++ b/docs/data/documentation/csv2img/csv/isloading.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/isloading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isLoading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9isLoadingSbvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/isLoading":{"role":"symbol","title":"isLoading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloading"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/isloading"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isLoading","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9isLoadingSbvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/isLoading":{"role":"symbol","title":"isLoading","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isLoading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag whether "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":" is loading contents or not"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/isLoading","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/isloading"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:).json b/docs/data/documentation/csv2img/csv/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:).json index cc683a4..070dc77 100644 --- a/docs/data/documentation/csv2img/csv/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:).json +++ b/docs/data/documentation/csv2img/csv/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"file","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Local disk url, commonly starts from "},{"type":"codeVoice","code":"file:\/\/"},{"type":"text","text":" schema. Relative-path method is not allowed, please specify by absolute-path method."}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"checkAccessSecurityScope","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This flag is effective to only macOS. If you want to check local-file is securely accessible from this app, make this flat "},{"type":"codeVoice","code":"true"},{"type":"text","text":". Default value if "},{"type":"codeVoice","code":"false"},{"type":"text","text":" which does not check the file access-security-scope."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC12loadFromDisk_9separator24checkAccessSecurityScope10exportTypeAC10Foundation3URLV_SSSbAC06ExportM0OtKFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"file","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Local disk url, commonly starts from "},{"type":"codeVoice","code":"file:\/\/"},{"type":"text","text":" schema. Relative-path method is not allowed, please specify by absolute-path method."}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"checkAccessSecurityScope","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This flag is effective to only macOS. If you want to check local-file is securely accessible from this app, make this flat "},{"type":"codeVoice","code":"true"},{"type":"text","text":". Default value if "},{"type":"codeVoice","code":"false"},{"type":"text","text":" which does not check the file access-security-scope."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC12loadFromDisk_9separator24checkAccessSecurityScope10exportTypeAC10Foundation3URLV_SSSbAC06ExportM0OtKFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)":{"role":"symbol","title":"loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromDisk"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"checkAccessSecurityScope"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from local disk url (like "},{"type":"codeVoice","code":"file:\/\/Users\/..."},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromDisk(_:separator:checkAccessSecurityScope:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/loadfromnetwork(_:separator:exporttype:).json b/docs/data/documentation/csv2img/csv/loadfromnetwork(_:separator:exporttype:).json index 378b7dc..42fe207 100644 --- a/docs/data/documentation/csv2img/csv/loadfromnetwork(_:separator:exporttype:).json +++ b/docs/data/documentation/csv2img/csv/loadfromnetwork(_:separator:exporttype:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"url","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Network url, commonly "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":" schema."}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC15loadFromNetwork_9separator10exportTypeAC10Foundation3URLV_SSAC06ExportI0OtKFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromNetwork(_:separator:exportType:)":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"url","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Network url, commonly "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":" schema."}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC15loadFromNetwork_9separator10exportTypeAC10Foundation3URLV_SSAC06ExportI0OtKFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromNetwork(_:separator:exportType:)":{"role":"symbol","title":"loadFromNetwork(_:separator:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromNetwork"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from network url (like "},{"type":"codeVoice","code":"HTTPS"},{"type":"text","text":")."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromNetwork(_:separator:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/loadfromstring(_:separator:maxlength:exporttype:).json b/docs/data/documentation/csv2img/csv/loadfromstring(_:separator:maxlength:exporttype:).json index 3927e7e..1523e63 100644 --- a/docs/data/documentation/csv2img/csv/loadfromstring(_:separator:maxlength:exporttype:).json +++ b/docs/data/documentation/csv2img/csv/loadfromstring(_:separator:maxlength:exporttype:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"str"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"str","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Row String"}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default separator in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"maxLength","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default value is nil. if "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":" is not nil, every row-item length is limited by "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":"."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You cloud call "},{"type":"codeVoice","code":"Csv.loadFromString"},{"type":"text","text":" if you can own raw-CSV data."}]},{"type":"codeListing","syntax":"swift","code":["let rawCsv = \"\"\"","a,b,c","1,2,3","4,5,6","7,8,9","10,11,12","\"\"\"","let csv = Csv.loadFromString(rawCsv)","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You cloud change separator by giving value to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]},{"type":"codeListing","syntax":"swift","code":["let dotSeparated = \"\"\"","a.b.c","1.2.3","4.5.6","7.8.9","\"\"\"","let csv = Csv.loadFromString(dotSeparated, separator: \".\")","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If certain row-item is very long, you could trim it with "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":"-th length."}]},{"type":"codeListing","syntax":"swift","code":["let longCsv = \"\"\"","a.b.c","1.2.33333333333333333333333333333333333333333","4.5.6","7.8.9","\"\"\"","let csv = Csv.loadFromString(dotSeparated, separator: \".\", maxLength: 7)","Output:","| a | b | c |","| 1 | 2 | 3333333 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC14loadFromString_9separator9maxLength10exportTypeACSS_SSSiSgAC06ExportK0OtFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromString(_:separator:maxLength:exportType:)":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"str"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \",\", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO","text":"ExportType"},{"kind":"text","text":" = .png) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"str","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Row String"}]}]},{"name":"separator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default separator in a row is "},{"type":"codeVoice","code":"\",\""},{"type":"text","text":". You cloud change it by giving separator to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]}]},{"name":"maxLength","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default value is nil. if "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":" is not nil, every row-item length is limited by "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":"."}]}]},{"name":"exportType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Default "},{"type":"codeVoice","code":"exportType"},{"type":"text","text":" is "},{"type":"codeVoice","code":".png"},{"type":"text","text":". If you use too big image size, I strongly recommend use "},{"type":"codeVoice","code":".pdf"},{"type":"text","text":" instead."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You cloud call "},{"type":"codeVoice","code":"Csv.loadFromString"},{"type":"text","text":" if you can own raw-CSV data."}]},{"type":"codeListing","syntax":"swift","code":["let rawCsv = \"\"\"","a,b,c","1,2,3","4,5,6","7,8,9","10,11,12","\"\"\"","let csv = Csv.loadFromString(rawCsv)","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You cloud change separator by giving value to "},{"type":"codeVoice","code":"separator"},{"type":"text","text":" parameter."}]},{"type":"codeListing","syntax":"swift","code":["let dotSeparated = \"\"\"","a.b.c","1.2.3","4.5.6","7.8.9","\"\"\"","let csv = Csv.loadFromString(dotSeparated, separator: \".\")","Output:","| a | b | c |","| 1 | 2 | 3 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If certain row-item is very long, you could trim it with "},{"type":"codeVoice","code":"maxLength"},{"type":"text","text":"-th length."}]},{"type":"codeListing","syntax":"swift","code":["let longCsv = \"\"\"","a.b.c","1.2.33333333333333333333333333333333333333333","4.5.6","7.8.9","\"\"\"","let csv = Csv.loadFromString(dotSeparated, separator: \".\", maxLength: 7)","Output:","| a | b | c |","| 1 | 2 | 3333333 |","| 4 | 5 | 6 |","| 7 | 8 | 9 |","| 10 | 11 | 12 |"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"kind":"symbol","metadata":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC14loadFromString_9separator9maxLength10exportTypeACSS_SSSiSgAC06ExportK0OtFZ","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ExportType-swift.enum":{"role":"symbol","title":"Csv.ExportType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ExportType"}],"abstract":[{"type":"codeVoice","code":"ExportType"},{"type":"text","text":" is a enum that expresses"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ExportType-swift.enum","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ExportType"}],"url":"\/documentation\/csv2img\/csv\/exporttype-swift.enum"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/loadFromString(_:separator:maxLength:exportType:)":{"role":"symbol","title":"loadFromString(_:separator:maxLength:exportType:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadFromString"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"exportType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ExportType","preciseIdentifier":"s:7Csv2Img3CsvC10ExportTypeO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"}],"abstract":[{"type":"text","text":"Generate "},{"type":"codeVoice","code":"Csv"},{"type":"text","text":" from "},{"type":"codeVoice","code":"String"},{"type":"text","text":" data."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/loadFromString(_:separator:maxLength:exportType:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/progresspublisher.json b/docs/data/documentation/csv2img/csv/progresspublisher.json index 18fe894..dd977fb 100644 --- a/docs/data/documentation/csv2img/csv/progresspublisher.json +++ b/docs/data/documentation/csv2img/csv/progresspublisher.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"nonisolated"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/progresspublisher"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"title":"progressPublisher","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC17progressPublisher7Combine03AnyE0VySds5NeverOGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/progress":{"role":"symbol","title":"progress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"progress stores current completeFraction of convert"},{"type":"text","text":" "},{"type":"text","text":"Value is in "},{"type":"codeVoice","code":"0...1"},{"type":"text","text":" with "},{"type":"codeVoice","code":"Double"},{"type":"text","text":" type"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progress"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/progressPublisher":{"role":"symbol","title":"progressPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progresspublisher"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"nonisolated"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/progresspublisher"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"title":"progressPublisher","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC17progressPublisher7Combine03AnyE0VySds5NeverOGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/progress":{"role":"symbol","title":"progress","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progress"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"progress stores current completeFraction of convert"},{"type":"text","text":" "},{"type":"text","text":"Value is in "},{"type":"codeVoice","code":"0...1"},{"type":"text","text":" with "},{"type":"codeVoice","code":"Double"},{"type":"text","text":" type"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progress"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/progressPublisher":{"role":"symbol","title":"progressPublisher","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"progressPublisher"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AnyPublisher","preciseIdentifier":"s:7Combine12AnyPublisherV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Publisher"},{"type":"text","text":" to send "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progress"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/progressPublisher","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/progresspublisher"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/rawstring.json b/docs/data/documentation/csv2img/csv/rawstring.json index 9108101..a9ce87e 100644 --- a/docs/data/documentation/csv2img/csv/rawstring.json +++ b/docs/data/documentation/csv2img/csv/rawstring.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/rawstring"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"rawString","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9rawStringSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/rawString":{"role":"symbol","title":"rawString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rawstring"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/rawstring"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"rawString","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9rawStringSSSgvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/rawString":{"role":"symbol","title":"rawString","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rawString"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"codeVoice","code":"rawString"},{"type":"text","text":" is original String read from Resource (either Local or Network)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rawString","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rawstring"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/row.json b/docs/data/documentation/csv2img/csv/row.json index 74d3383..8604ff3 100644 --- a/docs/data/documentation/csv2img/csv/row.json +++ b/docs/data/documentation/csv2img/csv/row.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Row is hrizontally separated group except first line."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"First line is treated as "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"eg."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 2 3 4"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"5 6 7 8"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"→Row is [5, 6, 7, 8]."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because this class is usually initialized via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":", you do not have to take care about "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"},{"type":"text","text":" in detail."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Row (a line)"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"Row"}],"role":"symbol","title":"Csv.Row","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"symbolKind":"struct","externalID":"s:7Csv2Img3CsvC3RowV","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Row/values":{"role":"symbol","title":"values","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/values"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/init(index:values:)":{"role":"symbol","title":"init(index:values:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/init(index:values:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/index"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Row is hrizontally separated group except first line."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"First line is treated as "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"eg."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 2 3 4"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"5 6 7 8"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"→Row is [5, 6, 7, 8]."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because this class is usually initialized via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"},{"type":"text","text":", you do not have to take care about "},{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"},{"type":"text","text":" in detail."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Row (a line)"}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"Row"}],"role":"symbol","title":"Csv.Row","roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"symbolKind":"struct","externalID":"s:7Csv2Img3CsvC3RowV","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/values":{"role":"symbol","title":"values","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/values"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/index"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/init(index:values:)":{"role":"symbol","title":"init(index:values:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/init(index:values:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/row/index.json b/docs/data/documentation/csv2img/csv/row/index.json index 32377bc..ca51a82 100644 --- a/docs/data/documentation/csv2img/csv/row/index.json +++ b/docs/data/documentation/csv2img/csv/row/index.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC3RowV5indexSivp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/index"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/index"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"index","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC3RowV5indexSivp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Row/index":{"role":"symbol","title":"index","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/index","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/index"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/row/init(index:values:).json b/docs/data/documentation/csv2img/csv/row/init(index:values:).json index 0fb3d0f..bd7221e 100644 --- a/docs/data/documentation/csv2img/csv/row/init(index:values:).json +++ b/docs/data/documentation/csv2img/csv/row/init(index:values:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/init(index:values:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"title":"init(index:values:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC3RowV5index6valuesAESi_SaySSGtcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/init(index:values:)":{"role":"symbol","title":"init(index:values:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/init(index:values:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/init(index:values:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"title":"init(index:values:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img3CsvC3RowV5index6valuesAESi_SaySSGtcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/init(index:values:)":{"role":"symbol","title":"init(index:values:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"index"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/init(index:values:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/init(index:values:)"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/row/values.json b/docs/data/documentation/csv2img/csv/row/values.json index 83240b7..c2fa3a6 100644 --- a/docs/data/documentation/csv2img/csv/row/values.json +++ b/docs/data/documentation/csv2img/csv/row/values.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/values"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"title":"values","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC3RowV6valuesSaySSGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/values":{"role":"symbol","title":"values","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/values"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/row\/values"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"title":"values","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC3RowV6valuesSaySSGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row/values":{"role":"symbol","title":"values","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row\/values","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/row\/values"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/rows.json b/docs/data/documentation/csv2img/csv/rows.json index f7ec627..4e31ded 100644 --- a/docs/data/documentation/csv2img/csv/rows.json +++ b/docs/data/documentation/csv2img/csv/rows.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/rows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"title":"rows","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC4rowsSayAC3RowVGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv/rows":{"role":"symbol","title":"rows","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rows"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/rows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"title":"rows","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC4rowsSayAC3RowVGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/rows":{"role":"symbol","title":"rows","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"an array of row whose type is ``Row`."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/rows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/rows"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/separator.json b/docs/data/documentation/csv2img/csv/separator.json index b84e4df..67ff985 100644 --- a/docs/data/documentation/csv2img/csv/separator.json +++ b/docs/data/documentation/csv2img/csv/separator.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/separator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"separator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9separatorSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/separator"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/separator"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"separator","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img3CsvC9separatorSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/separator":{"role":"symbol","title":"separator","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"an separator applied to each row and column"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/separator","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/separator"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csv/write(to:).json b/docs/data/documentation/csv2img/csv/write(to:).json index 1fd82f2..8b2060b 100644 --- a/docs/data/documentation/csv2img/csv/write(to:).json +++ b/docs/data/documentation/csv2img/csv/write(to:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If saving csv image to file, returns "},{"type":"codeVoice","code":"true"},{"type":"text","text":". Otherwise, return "},{"type":"codeVoice","code":"False"},{"type":"text","text":"."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"to url: local file path where [png, pdf] image will be saved."}]}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/write(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"write(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC5write2to10Foundation4DataVSgAF3URLV_tF","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv/write(to:)":{"role":"symbol","title":"write(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/write(to:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"url"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If saving csv image to file, returns "},{"type":"codeVoice","code":"true"},{"type":"text","text":". Otherwise, return "},{"type":"codeVoice","code":"False"},{"type":"text","text":"."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"to url: local file path where [png, pdf] image will be saved."}]}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csv\/write(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"write(to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"symbolKind":"method","externalID":"s:7Csv2Img3CsvC5write2to10Foundation4DataVSgAF3URLV_tF","extendedModule":"Csv2Img","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/write(to:)":{"role":"symbol","title":"write(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"write"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/write(to:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csv\/write(to:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csvrows.json b/docs/data/documentation/csv2img/csvrows.json new file mode 100644 index 0000000..59054d2 --- /dev/null +++ b/docs/data/documentation/csv2img/csvrows.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@propertyWrapper"},{"kind":"text","text":" "},{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csvrows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/init(column:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/column","doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/wrappedValue"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"title":"CsvRows","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:7Csv2Img7CsvRowsV","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"CsvRows"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/CsvRows":{"role":"symbol","title":"CsvRows","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvRows"}],"url":"\/documentation\/csv2img\/csvrows"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/column":{"role":"symbol","title":"column","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/column","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/column"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/init(column:)":{"role":"symbol","title":"init(column:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/init(column:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/init(column:)"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/wrappedValue":{"role":"symbol","title":"wrappedValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"wrappedValue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/wrappedValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/wrappedvalue"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csvrows/column.json b/docs/data/documentation/csv2img/csvrows/column.json new file mode 100644 index 0000000..f6592aa --- /dev/null +++ b/docs/data/documentation/csv2img/csvrows/column.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csvrows\/column"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/column","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"column","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img7CsvRowsV6columnSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/CsvRows":{"role":"symbol","title":"CsvRows","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvRows"}],"url":"\/documentation\/csv2img\/csvrows"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/column":{"role":"symbol","title":"column","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/column","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/column"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csvrows/init(column:).json b/docs/data/documentation/csv2img/csvrows/init(column:).json new file mode 100644 index 0000000..3adffcc --- /dev/null +++ b/docs/data/documentation/csv2img/csvrows/init(column:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csvrows\/init(column:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/init(column:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(column:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img7CsvRowsV6columnACSS_tcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/CsvRows":{"role":"symbol","title":"CsvRows","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvRows"}],"url":"\/documentation\/csv2img\/csvrows"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/init(column:)":{"role":"symbol","title":"init(column:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"column"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/init(column:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/init(column:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/csvrows/wrappedvalue.json b/docs/data/documentation/csv2img/csvrows/wrappedvalue.json new file mode 100644 index 0000000..e64e435 --- /dev/null +++ b/docs/data/documentation/csv2img/csvrows/wrappedvalue.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"wrappedValue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/csvrows\/wrappedvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/wrappedValue","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"wrappedValue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"title":"wrappedValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img7CsvRowsV12wrappedValueSaySSGvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/CsvRows/wrappedValue":{"role":"symbol","title":"wrappedValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"wrappedValue"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows\/wrappedValue","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/csvrows\/wrappedvalue"},"doc://Csv2Img/documentation/Csv2Img/CsvRows":{"role":"symbol","title":"CsvRows","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvRows","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvRows"}],"url":"\/documentation\/csv2img\/csvrows"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/imagemakingerror.json b/docs/data/documentation/csv2img/imagemakingerror.json index 135cbc1..6e7f0f7 100644 --- a/docs/data/documentation/csv2img/imagemakingerror.json +++ b/docs/data/documentation/csv2img/imagemakingerror.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","interfaceLanguage":"swift"},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/failedCreateImage(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"title":"ImageMakingError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:7Csv2Img16ImageMakingErrorO","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/noContextAvailable":{"role":"symbol","title":"ImageMakingError.noContextAvailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/error-implementations"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/underlying(_:)":{"role":"symbol","title":"ImageMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/failedCreateImage(_:)":{"role":"symbol","title":"ImageMakingError.failedCreateImage(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedCreateImage"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGContext","preciseIdentifier":"c:@T@CGContextRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/failedCreateImage(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/failedcreateimage(_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","interfaceLanguage":"swift"},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/failedCreateImage(_:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"title":"ImageMakingError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:7Csv2Img16ImageMakingErrorO","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/underlying(_:)":{"role":"symbol","title":"ImageMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/failedCreateImage(_:)":{"role":"symbol","title":"ImageMakingError.failedCreateImage(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedCreateImage"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGContext","preciseIdentifier":"c:@T@CGContextRef"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/failedCreateImage(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/failedcreateimage(_:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/noContextAvailable":{"role":"symbol","title":"ImageMakingError.noContextAvailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/imagemakingerror/error-implementations.json b/docs/data/documentation/csv2img/imagemakingerror/error-implementations.json index 243fbb1..07e75bb 100644 --- a/docs/data/documentation/csv2img/imagemakingerror/error-implementations.json +++ b/docs/data/documentation/csv2img/imagemakingerror/error-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"Csv2Img"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/imagemakingerror/localizeddescription.json b/docs/data/documentation/csv2img/imagemakingerror/localizeddescription.json index 10b047f..59941bb 100644 --- a/docs/data/documentation/csv2img/imagemakingerror/localizeddescription.json +++ b/docs/data/documentation/csv2img/imagemakingerror/localizeddescription.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img16ImageMakingErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img16ImageMakingErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/imagemakingerror/nocontextavailable.json b/docs/data/documentation/csv2img/imagemakingerror/nocontextavailable.json index 4d89d7e..9c8d897 100644 --- a/docs/data/documentation/csv2img/imagemakingerror/nocontextavailable.json +++ b/docs/data/documentation/csv2img/imagemakingerror/nocontextavailable.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"title":"ImageMakingError.noContextAvailable","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img16ImageMakingErrorO18noContextAvailableyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/noContextAvailable":{"role":"symbol","title":"ImageMakingError.noContextAvailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"title":"ImageMakingError.noContextAvailable","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img16ImageMakingErrorO18noContextAvailableyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/noContextAvailable":{"role":"symbol","title":"ImageMakingError.noContextAvailable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailable"}],"abstract":[{"type":"text","text":"Failed to get current "},{"type":"codeVoice","code":"CGContext"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/noContextAvailable","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/imagemakingerror/underlying(_:).json b/docs/data/documentation/csv2img/imagemakingerror/underlying(_:).json index 5388892..c1af759 100644 --- a/docs/data/documentation/csv2img/imagemakingerror/underlying(_:).json +++ b/docs/data/documentation/csv2img/imagemakingerror/underlying(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"title":"ImageMakingError.underlying(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img16ImageMakingErrorO10underlyingyACs0E0_pcACmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/underlying(_:)":{"role":"symbol","title":"ImageMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"title":"ImageMakingError.underlying(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img16ImageMakingErrorO10underlyingyACs0E0_pcACmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError/underlying(_:)":{"role":"symbol","title":"ImageMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)"},"doc://Csv2Img/documentation/Csv2Img/ImageMakingError":{"role":"symbol","title":"ImageMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ImageMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/ImageMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ImageMakingError"}],"url":"\/documentation\/csv2img\/imagemakingerror"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/maker.json b/docs/data/documentation/csv2img/maker.json index d1a2f38..1855b42 100644 --- a/docs/data/documentation/csv2img/maker.json +++ b/docs/data/documentation/csv2img/maker.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","interfaceLanguage":"swift"},"topicSections":[{"title":"Associated Types","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount"]},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"title":"Maker","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:7Csv2Img5MakerP","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"Maker"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker/Exportable":{"role":"symbol","title":"Exportable","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/exportable"},"doc://Csv2Img/documentation/Csv2Img/Maker/make(columns:rows:progress:)":{"role":"symbol","title":"make(columns:rows:progress:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker/maximumRowCount":{"role":"symbol","title":"maximumRowCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/maximumrowcount"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/Maker/setFontSize(_:)":{"role":"symbol","title":"setFontSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/setfontsize(_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","interfaceLanguage":"swift"},"topicSections":[{"title":"Associated Types","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount"]},{"title":"Instance Methods","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"title":"Maker","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:7Csv2Img5MakerP","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"Maker"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker/maximumRowCount":{"role":"symbol","title":"maximumRowCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/maximumrowcount"},"doc://Csv2Img/documentation/Csv2Img/Maker/setFontSize(_:)":{"role":"symbol","title":"setFontSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/setfontsize(_:)"},"doc://Csv2Img/documentation/Csv2Img/Maker/Exportable":{"role":"symbol","title":"Exportable","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/exportable"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/Maker/make(columns:rows:progress:)":{"role":"symbol","title":"make(columns:rows:progress:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/maker/exportable.json b/docs/data/documentation/csv2img/maker/exportable.json index 92cc4b3..d2a7534 100644 --- a/docs/data/documentation/csv2img/maker/exportable.json +++ b/docs/data/documentation/csv2img/maker/exportable.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/exportable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"Exportable","roleHeading":"Associated Type","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"symbolKind":"associatedtype","externalID":"s:7Csv2Img5MakerP10ExportableQa","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker/Exportable":{"role":"symbol","title":"Exportable","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/exportable"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP","text":"CsvExportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/exportable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"Exportable","roleHeading":"Associated Type","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"symbolKind":"associatedtype","externalID":"s:7Csv2Img5MakerP10ExportableQa","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker/Exportable":{"role":"symbol","title":"Exportable","fragments":[{"kind":"keyword","text":"associatedtype"},{"kind":"text","text":" "},{"kind":"identifier","text":"Exportable"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"CsvExportable","preciseIdentifier":"s:7Csv2Img13CsvExportableP"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/Exportable","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/exportable"},"doc://Csv2Img/documentation/Csv2Img/CsvExportable":{"role":"symbol","title":"CsvExportable","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CsvExportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/CsvExportable","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CsvExportable"}],"url":"\/documentation\/csv2img\/csvexportable"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/maker/make(columns:rows:progress:).json b/docs/data/documentation/csv2img/maker/make(columns:rows:progress:).json index 9f13f1b..6658b01 100644 --- a/docs/data/documentation/csv2img/maker/make(columns:rows:progress:).json +++ b/docs/data/documentation/csv2img/maker/make(columns:rows:progress:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"make(columns:rows:progress:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"symbolKind":"method","externalID":"s:7Csv2Img5MakerP4make7columns4rows8progress10ExportableQzSayAA3CsvC10ColumnNameVG_SayAK3RowVGySdctKF","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker/make(columns:rows:progress:)":{"role":"symbol","title":"make(columns:rows:progress:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV","text":"ColumnName"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","preciseIdentifier":"s:7Csv2Img3CsvC","text":"Csv"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV","text":"Row"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"make(columns:rows:progress:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"symbolKind":"method","externalID":"s:7Csv2Img5MakerP4make7columns4rows8progress10ExportableQzSayAA3CsvC10ColumnNameVG_SayAK3RowVGySdctKF","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Csv":{"role":"symbol","title":"Csv","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Csv"}],"abstract":[{"type":"text","text":"Csv data structure"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Csv"}],"url":"\/documentation\/csv2img\/csv"},"doc://Csv2Img/documentation/Csv2Img/Csv/Row":{"role":"symbol","title":"Csv.Row","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Row"}],"abstract":[{"type":"text","text":"Row (a line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/Row","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Row"}],"url":"\/documentation\/csv2img\/csv\/row"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/Maker/make(columns:rows:progress:)":{"role":"symbol","title":"make(columns:rows:progress:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"make"},{"kind":"text","text":"("},{"kind":"externalParam","text":"columns"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ColumnName","preciseIdentifier":"s:7Csv2Img3CsvC10ColumnNameV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rows"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Csv","preciseIdentifier":"s:7Csv2Img3CsvC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Row","preciseIdentifier":"s:7Csv2Img3CsvC3RowV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"progress"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Exportable"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/make(columns:rows:progress:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)"},"doc://Csv2Img/documentation/Csv2Img/Csv/ColumnName":{"role":"symbol","title":"Csv.ColumnName","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"ColumnName"}],"abstract":[{"type":"text","text":"ColumnName (a head line)"}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Csv\/ColumnName","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ColumnName"}],"url":"\/documentation\/csv2img\/csv\/columnname"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/maker/maximumrowcount.json b/docs/data/documentation/csv2img/maker/maximumrowcount.json index 054ea02..54f93d7 100644 --- a/docs/data/documentation/csv2img/maker/maximumrowcount.json +++ b/docs/data/documentation/csv2img/maker/maximumrowcount.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/maximumrowcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"maximumRowCount","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:7Csv2Img5MakerP15maximumRowCountSiSgvp","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker/maximumRowCount":{"role":"symbol","title":"maximumRowCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/maximumrowcount"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/maximumrowcount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"maximumRowCount","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:7Csv2Img5MakerP15maximumRowCountSiSgvp","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker/maximumRowCount":{"role":"symbol","title":"maximumRowCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumRowCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/maximumRowCount","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/maximumrowcount"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/maker/setfontsize(_:).json b/docs/data/documentation/csv2img/maker/setfontsize(_:).json index 36cd247..d4db53d 100644 --- a/docs/data/documentation/csv2img/maker/setfontsize(_:).json +++ b/docs/data/documentation/csv2img/maker/setfontsize(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/setfontsize(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"setFontSize(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:7Csv2Img5MakerP11setFontSizeyy14CoreFoundation7CGFloatVF","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker/setFontSize(_:)":{"role":"symbol","title":"setFontSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/setfontsize(_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"size"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/maker\/setfontsize(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"setFontSize(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:7Csv2Img5MakerP11setFontSizeyy14CoreFoundation7CGFloatVF","required":true,"modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/Maker":{"role":"symbol","title":"Maker","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Maker"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Maker"}],"url":"\/documentation\/csv2img\/maker"},"doc://Csv2Img/documentation/Csv2Img/Maker/setFontSize(_:)":{"role":"symbol","title":"setFontSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setFontSize"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/Maker\/setFontSize(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/csv2img\/maker\/setfontsize(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmakingerror.json b/docs/data/documentation/csv2img/pdfmakingerror.json index b9791b9..304aede 100644 --- a/docs/data/documentation/csv2img/pdfmakingerror.json +++ b/docs/data/documentation/csv2img/pdfmakingerror.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","interfaceLanguage":"swift"},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/underlying(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"title":"PdfMakingError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:7Csv2Img14PdfMakingErrorO","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/emptyRows":{"role":"symbol","title":"PdfMakingError.emptyRows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/underlying(_:)":{"role":"symbol","title":"PdfMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/underlying(_:)"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/failedToGeneratePdf":{"role":"symbol","title":"PdfMakingError.failedToGeneratePdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/noContextAvailabe":{"role":"symbol","title":"PdfMakingError.noContextAvailabe","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/Csv2Img\/s5ErrorP","doc:\/\/Csv2Img\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","interfaceLanguage":"swift"},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/underlying(_:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations"],"generated":true}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"title":"PdfMakingError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:7Csv2Img14PdfMakingErrorO","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/noContextAvailabe":{"role":"symbol","title":"PdfMakingError.noContextAvailabe","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/emptyRows":{"role":"symbol","title":"PdfMakingError.emptyRows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows"},"doc://Csv2Img/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/Csv2Img\/s8SendableP"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/failedToGeneratePdf":{"role":"symbol","title":"PdfMakingError.failedToGeneratePdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/underlying(_:)":{"role":"symbol","title":"PdfMakingError.underlying(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"underlying"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/underlying(_:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/underlying(_:)"},"doc://Csv2Img/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/Csv2Img\/s5ErrorP"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmakingerror/emptyrows.json b/docs/data/documentation/csv2img/pdfmakingerror/emptyrows.json index ce66053..630bb86 100644 --- a/docs/data/documentation/csv2img/pdfmakingerror/emptyrows.json +++ b/docs/data/documentation/csv2img/pdfmakingerror/emptyrows.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/emptyrows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"title":"PdfMakingError.emptyRows","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO9emptyRowsyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/emptyRows":{"role":"symbol","title":"PdfMakingError.emptyRows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/emptyrows"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"title":"PdfMakingError.emptyRows","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO9emptyRowsyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/emptyRows":{"role":"symbol","title":"PdfMakingError.emptyRows","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"emptyRows"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/emptyRows","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmakingerror/failedtogeneratepdf.json b/docs/data/documentation/csv2img/pdfmakingerror/failedtogeneratepdf.json index 39a3c26..90b97b9 100644 --- a/docs/data/documentation/csv2img/pdfmakingerror/failedtogeneratepdf.json +++ b/docs/data/documentation/csv2img/pdfmakingerror/failedtogeneratepdf.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"title":"PdfMakingError.failedToGeneratePdf","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO016failedToGenerateC0yA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/failedToGeneratePdf":{"role":"symbol","title":"PdfMakingError.failedToGeneratePdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"title":"PdfMakingError.failedToGeneratePdf","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO016failedToGenerateC0yA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/failedToGeneratePdf":{"role":"symbol","title":"PdfMakingError.failedToGeneratePdf","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"failedToGeneratePdf"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/failedToGeneratePdf","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmakingerror/localizeddescription.json b/docs/data/documentation/csv2img/pdfmakingerror/localizeddescription.json index 6ec1053..7978c57 100644 --- a/docs/data/documentation/csv2img/pdfmakingerror/localizeddescription.json +++ b/docs/data/documentation/csv2img/pdfmakingerror/localizeddescription.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img14PdfMakingErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:7Csv2Img14PdfMakingErrorO","extendedModule":"Swift","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/localizeddescription"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmakingerror/nocontextavailabe.json b/docs/data/documentation/csv2img/pdfmakingerror/nocontextavailabe.json index 34234b1..51b5de9 100644 --- a/docs/data/documentation/csv2img/pdfmakingerror/nocontextavailabe.json +++ b/docs/data/documentation/csv2img/pdfmakingerror/nocontextavailabe.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"title":"PdfMakingError.noContextAvailabe","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO17noContextAvailabeyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/noContextAvailabe":{"role":"symbol","title":"PdfMakingError.noContextAvailabe","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"title":"PdfMakingError.noContextAvailabe","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:7Csv2Img14PdfMakingErrorO17noContextAvailabeyA2CmF","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError":{"role":"symbol","title":"PdfMakingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PdfMakingError"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PdfMakingError"}],"url":"\/documentation\/csv2img\/pdfmakingerror"},"doc://Csv2Img/documentation/Csv2Img/PdfMakingError/noContextAvailabe":{"role":"symbol","title":"PdfMakingError.noContextAvailabe","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noContextAvailabe"}],"abstract":[{"type":"text","text":"Failed to get\/create "},{"type":"codeVoice","code":"CGContext"},{"type":"text","text":"."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PdfMakingError\/noContextAvailabe","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmetadata.json b/docs/data/documentation/csv2img/pdfmetadata.json index f5d2b4b..cbd73c3 100644 --- a/docs/data/documentation/csv2img/pdfmetadata.json +++ b/docs/data/documentation/csv2img/pdfmetadata.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","interfaceLanguage":"swift"},"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"title":"PDFMetadata","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:7Csv2Img11PDFMetadataV","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/author","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/title"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/init(author:title:)":{"role":"symbol","title":"init(author:title:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/author":{"role":"symbol","title":"author","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"author"},{"type":"text","text":". author of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/author","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/author"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","interfaceLanguage":"swift"},"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"title":"PDFMetadata","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:7Csv2Img11PDFMetadataV","modules":[{"name":"Csv2Img"}],"navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/author","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title"]}],"references":{"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/author":{"role":"symbol","title":"author","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"author"},{"type":"text","text":". author of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/author","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/author"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/init(author:title:)":{"role":"symbol","title":"init(author:title:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/title"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmetadata/init(author:title:).json b/docs/data/documentation/csv2img/pdfmetadata/init(author:title:).json index 66a0c0c..f60e85a 100644 --- a/docs/data/documentation/csv2img/pdfmetadata/init(author:title:).json +++ b/docs/data/documentation/csv2img/pdfmetadata/init(author:title:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(author:title:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img11PDFMetadataV6author5titleACSS_SStcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/init(author:title:)":{"role":"symbol","title":"init(author:title:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(author:title:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:7Csv2Img11PDFMetadataV6author5titleACSS_SStcfc","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/init(author:title:)":{"role":"symbol","title":"init(author:title:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"author"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/init(author:title:)","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"}}} \ No newline at end of file diff --git a/docs/data/documentation/csv2img/pdfmetadata/title.json b/docs/data/documentation/csv2img/pdfmetadata/title.json index b438246..a398f69 100644 --- a/docs/data/documentation/csv2img/pdfmetadata/title.json +++ b/docs/data/documentation/csv2img/pdfmetadata/title.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata\/title"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"title","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img11PDFMetadataV5titleSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]]},"references":{"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"},"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/title"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/csv2img\/pdfmetadata\/title"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"title","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:7Csv2Img11PDFMetadataV5titleSSvp","modules":[{"name":"Csv2Img"}]},"hierarchy":{"paths":[["doc:\/\/Csv2Img\/documentation\/Csv2Img","doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"]]},"references":{"doc://Csv2Img/documentation/Csv2Img":{"role":"collection","title":"Csv2Img","abstract":[],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img","kind":"symbol","type":"topic","url":"\/documentation\/csv2img"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata/title":{"role":"symbol","title":"title","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"codeVoice","code":"title"},{"type":"text","text":". title of document."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata\/title","kind":"symbol","type":"topic","url":"\/documentation\/csv2img\/pdfmetadata\/title"},"doc://Csv2Img/documentation/Csv2Img/PDFMetadata":{"role":"symbol","title":"PDFMetadata","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"PDFMetadata"}],"abstract":[{"type":"reference","isActive":true,"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata"},{"type":"text","text":" is a struct which stores Metadata about output-pdf."}],"identifier":"doc:\/\/Csv2Img\/documentation\/Csv2Img\/PDFMetadata","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PDFMetadata"}],"url":"\/documentation\/csv2img\/pdfmetadata"}}} \ No newline at end of file diff --git a/docs/documentation/csv2img/csvrows/column/index.html b/docs/documentation/csv2img/csvrows/column/index.html new file mode 100644 index 0000000..2f355a8 --- /dev/null +++ b/docs/documentation/csv2img/csvrows/column/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/documentation/csv2img/csvrows/index.html b/docs/documentation/csv2img/csvrows/index.html new file mode 100644 index 0000000..2f355a8 --- /dev/null +++ b/docs/documentation/csv2img/csvrows/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/documentation/csv2img/csvrows/init(column:)/index.html b/docs/documentation/csv2img/csvrows/init(column:)/index.html new file mode 100644 index 0000000..2f355a8 --- /dev/null +++ b/docs/documentation/csv2img/csvrows/init(column:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/documentation/csv2img/csvrows/wrappedvalue/index.html b/docs/documentation/csv2img/csvrows/wrappedvalue/index.html new file mode 100644 index 0000000..2f355a8 --- /dev/null +++ b/docs/documentation/csv2img/csvrows/wrappedvalue/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/index.md b/docs/index.md index ede81f2..840b5c0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -103,11 +103,46 @@ let data = try await csv.generate(fontSize: 12, exportType: .png) | 10 | 11 | 12 | ``` - #### Output Image ![sample](https://user-images.githubusercontent.com/44002126/186432783-cd5eecdc-bcf6-4c0c-849e-9b4d3da246e1.png) +# CsvBuilder (Helper Library for Csv2Img) + +A helper library to generate `Csv` in Csv2Img library. + +## How to use + +1. Define custom type which conform to `CsvComposition`. + +- Note that `@CsvRows` is a propertyWrapper in Csv2Img library so you need to import Csv2Img. + +```swift +import Foundation +import Csv2Img + + +public struct ExampleComposition: CsvComposition { + @CsvRows(column: "age") + public var ages: [String] + + @CsvRows(column: "name") + public var names: [String] + + public init() { } +} +``` + +2. Build `Csv` + +```swift +let composition: ExampleComposition = .init() +let csv = try! composition.build() +``` + +| Result | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| スクリーンショット 2022-08-25 17 14 45 | # Csv2ImgCmd (CLI) @@ -133,7 +168,6 @@ https://raw.githubusercontent.com/fummicc1/csv2img/main/Sources/Csv2ImgCmd/Resou output.png ``` - # Contributing Pull requests, bug reports and feature requests are welcome 🚀 diff --git a/docs/index/index.json b/docs/index/index.json index dad5dfb..9fb27f9 100644 --- a/docs/index/index.json +++ b/docs/index/index.json @@ -1 +1 @@ -{"interfaceLanguages":{"swift":[{"children":[{"title":"Classes","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/anycsvexportable\/init(_:)","title":"init(CsvExportable)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/anycsvexportable\/base","title":"var base: CsvExportable","type":"property"}],"path":"\/documentation\/csv2img\/anycsvexportable","title":"AnyCsvExportable","type":"class"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnname\/init(value:)","title":"init(value: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnname\/value","title":"var value: String","type":"property"}],"path":"\/documentation\/csv2img\/csv\/columnname","title":"Csv.ColumnName","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/row\/init(index:values:)","title":"init(index: Int, values: [String])","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/row\/index","title":"var index: Int","type":"property"},{"path":"\/documentation\/csv2img\/csv\/row\/values","title":"var values: [String]","type":"property"}],"path":"\/documentation\/csv2img\/csv\/row","title":"Csv.Row","type":"struct"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)","title":"init(separator: String, rawString: String, columnNames: [Csv.ColumnName], rows: [Csv.Row], exportType: Csv.ExportType)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnnames","title":"var columnNames: [Csv.ColumnName]","type":"property"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.property","title":"var exportType: Csv.ExportType","type":"property"},{"path":"\/documentation\/csv2img\/csv\/isloading","title":"var isLoading: Bool","type":"property"},{"path":"\/documentation\/csv2img\/csv\/isloadingpublisher","title":"var isLoadingPublisher: AnyPublisher","type":"property"},{"path":"\/documentation\/csv2img\/csv\/progress","title":"var progress: Double","type":"property"},{"path":"\/documentation\/csv2img\/csv\/progresspublisher","title":"var progressPublisher: AnyPublisher","type":"property"},{"path":"\/documentation\/csv2img\/csv\/rawstring","title":"var rawString: String","type":"property"},{"path":"\/documentation\/csv2img\/csv\/rows","title":"var rows: [Csv.Row]","type":"property"},{"path":"\/documentation\/csv2img\/csv\/separator","title":"var separator: String","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)","title":"func generate(fontSize: CGFloat?, exportType: Csv.ExportType) async throws -> AnyCsvExportable","type":"method"},{"path":"\/documentation\/csv2img\/csv\/write(to:)","title":"func write(to: URL) -> Data?","type":"method"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)","title":"static func loadFromDisk(URL, separator: String, checkAccessSecurityScope: Bool, exportType: Csv.ExportType) throws -> Csv","type":"method"},{"path":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)","title":"static func loadFromNetwork(URL, separator: String, exportType: Csv.ExportType) throws -> Csv","type":"method"},{"path":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)","title":"static func loadFromString(String, separator: String, maxLength: Int?, exportType: Csv.ExportType) -> Csv","type":"method"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)","title":"case cannotAccessFile(url: String)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/emptydata","title":"case emptyData","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)","title":"case invalidDownloadResource(url: String, data: Data)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)","title":"case invalidExportType(Csv.ExportType)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)","title":"case invalidLocalResource(url: String, data: Data)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/underlying(_:)","title":"case underlying(Error?)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/workinprogress","title":"case workInProgress","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/csv\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/csv\/error","title":"Csv.Error","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf","title":"case pdf","type":"case"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png","title":"case png","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension","title":"var fileExtension: String","type":"property"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype","title":"var utType: UTType","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum","title":"Csv.ExportType","type":"enum"}],"path":"\/documentation\/csv2img\/csv","title":"Csv","type":"class"},{"title":"Protocols","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csvexportable","title":"CsvExportable","type":"protocol"},{"children":[{"title":"Associated Types","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/exportable","title":"Exportable","type":"associatedtype"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/maximumrowcount","title":"var maximumRowCount: Int?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)","title":"func make(columns: [Csv.ColumnName], rows: [Csv.Row], progress: (Double) -> Void) throws -> Self.Exportable","type":"method"},{"path":"\/documentation\/csv2img\/maker\/setfontsize(_:)","title":"func setFontSize(CGFloat)","type":"method"}],"path":"\/documentation\/csv2img\/maker","title":"Maker","type":"protocol"},{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)","title":"init(author: String, title: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmetadata\/author","title":"var author: String","type":"property"},{"path":"\/documentation\/csv2img\/pdfmetadata\/title","title":"var title: String","type":"property"}],"path":"\/documentation\/csv2img\/pdfmetadata","title":"PDFMetadata","type":"struct"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/imagemakingerror\/failedcreateimage(_:)","title":"case failedCreateImage(CGContext)","type":"case"},{"path":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable","title":"case noContextAvailable","type":"case"},{"path":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)","title":"case underlying(Error)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/imagemakingerror\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/imagemakingerror","title":"ImageMakingError","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows","title":"case emptyRows","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf","title":"case failedToGeneratePdf","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe","title":"case noContextAvailabe","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/underlying(_:)","title":"case underlying(Error)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/pdfmakingerror","title":"PdfMakingError","type":"enum"}],"path":"\/documentation\/csv2img","title":"Csv2Img","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":0}} \ No newline at end of file +{"interfaceLanguages":{"swift":[{"children":[{"title":"Classes","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/anycsvexportable\/init(_:)","title":"init(CsvExportable)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/anycsvexportable\/base","title":"var base: CsvExportable","type":"property"}],"path":"\/documentation\/csv2img\/anycsvexportable","title":"AnyCsvExportable","type":"class"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnname\/init(value:)","title":"init(value: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnname\/value","title":"var value: String","type":"property"}],"path":"\/documentation\/csv2img\/csv\/columnname","title":"Csv.ColumnName","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/row\/init(index:values:)","title":"init(index: Int, values: [String])","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/row\/index","title":"var index: Int","type":"property"},{"path":"\/documentation\/csv2img\/csv\/row\/values","title":"var values: [String]","type":"property"}],"path":"\/documentation\/csv2img\/csv\/row","title":"Csv.Row","type":"struct"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/init(separator:rawstring:columnnames:rows:exporttype:)","title":"init(separator: String, rawString: String?, columnNames: [Csv.ColumnName], rows: [Csv.Row], exportType: Csv.ExportType)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/columnnames","title":"var columnNames: [Csv.ColumnName]","type":"property"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.property","title":"var exportType: Csv.ExportType","type":"property"},{"path":"\/documentation\/csv2img\/csv\/isloading","title":"var isLoading: Bool","type":"property"},{"path":"\/documentation\/csv2img\/csv\/isloadingpublisher","title":"var isLoadingPublisher: AnyPublisher","type":"property"},{"path":"\/documentation\/csv2img\/csv\/progress","title":"var progress: Double","type":"property"},{"path":"\/documentation\/csv2img\/csv\/progresspublisher","title":"var progressPublisher: AnyPublisher","type":"property"},{"path":"\/documentation\/csv2img\/csv\/rawstring","title":"var rawString: String?","type":"property"},{"path":"\/documentation\/csv2img\/csv\/rows","title":"var rows: [Csv.Row]","type":"property"},{"path":"\/documentation\/csv2img\/csv\/separator","title":"var separator: String","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/generate(fontsize:exporttype:)","title":"func generate(fontSize: CGFloat?, exportType: Csv.ExportType) async throws -> AnyCsvExportable","type":"method"},{"path":"\/documentation\/csv2img\/csv\/write(to:)","title":"func write(to: URL) -> Data?","type":"method"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/loadfromdisk(_:separator:checkaccesssecurityscope:exporttype:)","title":"static func loadFromDisk(URL, separator: String, checkAccessSecurityScope: Bool, exportType: Csv.ExportType) throws -> Csv","type":"method"},{"path":"\/documentation\/csv2img\/csv\/loadfromnetwork(_:separator:exporttype:)","title":"static func loadFromNetwork(URL, separator: String, exportType: Csv.ExportType) throws -> Csv","type":"method"},{"path":"\/documentation\/csv2img\/csv\/loadfromstring(_:separator:maxlength:exporttype:)","title":"static func loadFromString(String, separator: String, maxLength: Int?, exportType: Csv.ExportType) -> Csv","type":"method"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/error\/cannotaccessfile(url:)","title":"case cannotAccessFile(url: String)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/emptydata","title":"case emptyData","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invaliddownloadresource(url:data:)","title":"case invalidDownloadResource(url: String, data: Data)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invalidexporttype(_:)","title":"case invalidExportType(Csv.ExportType)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/invalidlocalresource(url:data:)","title":"case invalidLocalResource(url: String, data: Data)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/underlying(_:)","title":"case underlying(Error?)","type":"case"},{"path":"\/documentation\/csv2img\/csv\/error\/workinprogress","title":"case workInProgress","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/error\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/csv\/error\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/csv\/error","title":"Csv.Error","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/pdf","title":"case pdf","type":"case"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/png","title":"case png","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/init(rawvalue:)","title":"init?(rawValue: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/fileextension","title":"var fileExtension: String","type":"property"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/uttype","title":"var utType: UTType","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/csv\/exporttype-swift.enum","title":"Csv.ExportType","type":"enum"}],"path":"\/documentation\/csv2img\/csv","title":"Csv","type":"class"},{"title":"Protocols","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csvexportable","title":"CsvExportable","type":"protocol"},{"children":[{"title":"Associated Types","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/exportable","title":"Exportable","type":"associatedtype"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/maximumrowcount","title":"var maximumRowCount: Int?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/csv2img\/maker\/make(columns:rows:progress:)","title":"func make(columns: [Csv.ColumnName], rows: [Csv.Row], progress: (Double) -> Void) throws -> Self.Exportable","type":"method"},{"path":"\/documentation\/csv2img\/maker\/setfontsize(_:)","title":"func setFontSize(CGFloat)","type":"method"}],"path":"\/documentation\/csv2img\/maker","title":"Maker","type":"protocol"},{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csvrows\/init(column:)","title":"init(column: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/csvrows\/column","title":"var column: String","type":"property"},{"path":"\/documentation\/csv2img\/csvrows\/wrappedvalue","title":"var wrappedValue: [String]","type":"property"}],"path":"\/documentation\/csv2img\/csvrows","title":"CsvRows","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmetadata\/init(author:title:)","title":"init(author: String, title: String)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmetadata\/author","title":"var author: String","type":"property"},{"path":"\/documentation\/csv2img\/pdfmetadata\/title","title":"var title: String","type":"property"}],"path":"\/documentation\/csv2img\/pdfmetadata","title":"PDFMetadata","type":"struct"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/imagemakingerror\/failedcreateimage(_:)","title":"case failedCreateImage(CGContext)","type":"case"},{"path":"\/documentation\/csv2img\/imagemakingerror\/nocontextavailable","title":"case noContextAvailable","type":"case"},{"path":"\/documentation\/csv2img\/imagemakingerror\/underlying(_:)","title":"case underlying(Error)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/imagemakingerror\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/imagemakingerror\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/imagemakingerror","title":"ImageMakingError","type":"enum"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/emptyrows","title":"case emptyRows","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/failedtogeneratepdf","title":"case failedToGeneratePdf","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/nocontextavailabe","title":"case noContextAvailabe","type":"case"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/underlying(_:)","title":"case underlying(Error)","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/csv2img\/pdfmakingerror\/localizeddescription","title":"var localizedDescription: String","type":"property"}],"path":"\/documentation\/csv2img\/pdfmakingerror\/error-implementations","title":"Error Implementations","type":"symbol"}],"path":"\/documentation\/csv2img\/pdfmakingerror","title":"PdfMakingError","type":"enum"}],"path":"\/documentation\/csv2img","title":"Csv2Img","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":0}} \ No newline at end of file diff --git a/generate_dmg.sh b/generate_dmg.sh new file mode 100644 index 0000000..05a7907 --- /dev/null +++ b/generate_dmg.sh @@ -0,0 +1,2 @@ +#!/bin/bash +