From 84a0d0ae677218873867a8badf4b0a18ff62e9a2 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 00:23:01 +0900 Subject: [PATCH 01/12] #8 Created files --- .../xcschemes/Csv2Img-Package.xcscheme | 24 ++++++++++++++++ Package.resolved | 9 ++++++ Package.swift | 28 +++++++++++++++++-- Sources/Csv2Img/ColumnWrapper.swift | 18 ++++++++++++ Sources/Csv2Img/RowWrapper.swift | 20 +++++++++++++ Sources/CsvBuilder/CsvBuilder.swift | 27 ++++++++++++++++++ Sources/CsvBuilder/Example.swift | 24 ++++++++++++++++ Tests/CsvBuilderTests/CsvBuilderTests.swift | 11 ++++++++ 8 files changed, 159 insertions(+), 2 deletions(-) create mode 100644 Sources/Csv2Img/ColumnWrapper.swift create mode 100644 Sources/Csv2Img/RowWrapper.swift create mode 100644 Sources/CsvBuilder/CsvBuilder.swift create mode 100644 Sources/CsvBuilder/Example.swift create mode 100644 Tests/CsvBuilderTests/CsvBuilderTests.swift 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:"> + + + + + + + + Csv +} + +public protocol CsvComposition { +} + +extension CsvBuilder { + public func build() throws -> Csv { + fatalError() + } +} diff --git a/Sources/CsvBuilder/Example.swift b/Sources/CsvBuilder/Example.swift new file mode 100644 index 0000000..fc82da6 --- /dev/null +++ b/Sources/CsvBuilder/Example.swift @@ -0,0 +1,24 @@ +// +// Example.swift +// +// +// Created by Fumiya Tanaka on 2022/08/24. +// + +import Foundation +import Csv2Img + + +public struct Example: CsvComposition { + @CsvColumn + var name: String + + @CsvColumn + var age: String + + @CsvRow(column: "age") + var ages: [String] + + @CsvRow(column: "name") + var names: [String] +} 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 { +} From 5f629657254fafc76a67df1789d1a56ad70d0045 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 00:27:20 +0900 Subject: [PATCH 02/12] #8 clear CsvBuilderError case --- Sources/CsvBuilder/CsvBuilder.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/CsvBuilder/CsvBuilder.swift b/Sources/CsvBuilder/CsvBuilder.swift index d65a639..9166ae0 100644 --- a/Sources/CsvBuilder/CsvBuilder.swift +++ b/Sources/CsvBuilder/CsvBuilder.swift @@ -10,7 +10,6 @@ import Csv2Img import SwiftSyntaxParser public enum CsvBuilderError: Error { - case invalidURL(URL) } public protocol CsvBuilder { From c235222b507928c2d59f3d818b59a42d9c05ef10 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 00:31:15 +0900 Subject: [PATCH 03/12] #8 Updated Example.swift --- Sources/CsvBuilder/Example.swift | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Sources/CsvBuilder/Example.swift b/Sources/CsvBuilder/Example.swift index fc82da6..0c9ad6a 100644 --- a/Sources/CsvBuilder/Example.swift +++ b/Sources/CsvBuilder/Example.swift @@ -22,3 +22,18 @@ public struct Example: CsvComposition { @CsvRow(column: "name") var names: [String] } + + +public struct ExampleBuilder: CsvBuilder { + + var raw: String = """ +name,age +tanaka, 100 +sato, 99 +yamada, 98 +""" + + public func build() async throws -> Csv { + return await Csv().loadFromString(raw) + } +} From a8cdeb42d121e9bbd33c3ce505f1a2f3d43aa29b Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 00:42:00 +0900 Subject: [PATCH 04/12] #8 Started Examples --- .../project.pbxproj | 369 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 63 +++ .../Assets.xcassets/Contents.json | 6 + .../CsvBuilderExample/ContentView.swift | 26 ++ .../CsvBuilderExample.entitlements | 10 + .../CsvBuilderExampleApp.swift | 17 + .../Preview Assets.xcassets/Contents.json | 6 + Sources/Csv2Img/ColumnWrapper.swift | 9 +- Sources/CsvBuilder/Example.swift | 15 +- 12 files changed, 531 insertions(+), 16 deletions(-) create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/Assets.xcassets/Contents.json create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExample.entitlements create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/CsvBuilderExampleApp.swift create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/Preview Content/Preview Assets.xcassets/Contents.json diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj new file mode 100644 index 0000000..3e14597 --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj @@ -0,0 +1,369 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + D308AB9028B67E1900ECA831 /* CsvBuilderExampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = D308AB8F28B67E1900ECA831 /* CsvBuilderExampleApp.swift */; }; + D308AB9228B67E1900ECA831 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D308AB9128B67E1900ECA831 /* ContentView.swift */; }; + D308AB9428B67E1A00ECA831 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D308AB9328B67E1A00ECA831 /* Assets.xcassets */; }; + D308AB9828B67E1A00ECA831 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D308AB9728B67E1A00ECA831 /* Preview Assets.xcassets */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + D308AB8C28B67E1900ECA831 /* CsvBuilderExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CsvBuilderExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; + D308AB8F28B67E1900ECA831 /* CsvBuilderExampleApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CsvBuilderExampleApp.swift; sourceTree = ""; }; + D308AB9128B67E1900ECA831 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + D308AB9328B67E1A00ECA831 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + D308AB9528B67E1A00ECA831 /* CsvBuilderExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = CsvBuilderExample.entitlements; sourceTree = ""; }; + D308AB9728B67E1A00ECA831 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + D308AB9F28B67E3700ECA831 /* Csv2Img */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = Csv2Img; path = ../..; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + D308AB8928B67E1900ECA831 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + D308AB8328B67E1900ECA831 = { + isa = PBXGroup; + children = ( + D308AB9E28B67E3700ECA831 /* Packages */, + D308AB8E28B67E1900ECA831 /* CsvBuilderExample */, + D308AB8D28B67E1900ECA831 /* Products */, + ); + sourceTree = ""; + }; + D308AB8D28B67E1900ECA831 /* Products */ = { + isa = PBXGroup; + children = ( + D308AB8C28B67E1900ECA831 /* CsvBuilderExample.app */, + ); + name = Products; + sourceTree = ""; + }; + D308AB8E28B67E1900ECA831 /* CsvBuilderExample */ = { + isa = PBXGroup; + children = ( + D308AB8F28B67E1900ECA831 /* CsvBuilderExampleApp.swift */, + D308AB9128B67E1900ECA831 /* ContentView.swift */, + D308AB9328B67E1A00ECA831 /* Assets.xcassets */, + D308AB9528B67E1A00ECA831 /* CsvBuilderExample.entitlements */, + D308AB9628B67E1A00ECA831 /* Preview Content */, + ); + path = CsvBuilderExample; + sourceTree = ""; + }; + D308AB9628B67E1A00ECA831 /* Preview Content */ = { + isa = PBXGroup; + children = ( + D308AB9728B67E1A00ECA831 /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; + D308AB9E28B67E3700ECA831 /* Packages */ = { + isa = PBXGroup; + children = ( + D308AB9F28B67E3700ECA831 /* Csv2Img */, + ); + name = Packages; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + D308AB8B28B67E1900ECA831 /* CsvBuilderExample */ = { + isa = PBXNativeTarget; + buildConfigurationList = D308AB9B28B67E1A00ECA831 /* Build configuration list for PBXNativeTarget "CsvBuilderExample" */; + buildPhases = ( + D308AB8828B67E1900ECA831 /* Sources */, + D308AB8928B67E1900ECA831 /* Frameworks */, + D308AB8A28B67E1900ECA831 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CsvBuilderExample; + productName = CsvBuilderExample; + productReference = D308AB8C28B67E1900ECA831 /* CsvBuilderExample.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D308AB8428B67E1900ECA831 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1400; + LastUpgradeCheck = 1400; + TargetAttributes = { + D308AB8B28B67E1900ECA831 = { + CreatedOnToolsVersion = 14.0; + }; + }; + }; + buildConfigurationList = D308AB8728B67E1900ECA831 /* Build configuration list for PBXProject "CsvBuilderExample" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = D308AB8328B67E1900ECA831; + productRefGroup = D308AB8D28B67E1900ECA831 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + D308AB8B28B67E1900ECA831 /* CsvBuilderExample */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + D308AB8A28B67E1900ECA831 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D308AB9828B67E1A00ECA831 /* Preview Assets.xcassets in Resources */, + D308AB9428B67E1A00ECA831 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + D308AB8828B67E1900ECA831 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D308AB9228B67E1900ECA831 /* ContentView.swift in Sources */, + D308AB9028B67E1900ECA831 /* CsvBuilderExampleApp.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + D308AB9928B67E1A00ECA831 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + D308AB9A28B67E1A00ECA831 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + D308AB9C28B67E1A00ECA831 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = CsvBuilderExample/CsvBuilderExample.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"CsvBuilderExample/Preview Content\""; + DEVELOPMENT_TEAM = S8WBNKMKYU; + ENABLE_HARDENED_RUNTIME = YES; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault; + "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; + LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; + "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = dev.fummicc1.example.CsvBuilderExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = auto; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + D308AB9D28B67E1A00ECA831 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = CsvBuilderExample/CsvBuilderExample.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"CsvBuilderExample/Preview Content\""; + DEVELOPMENT_TEAM = S8WBNKMKYU; + ENABLE_HARDENED_RUNTIME = YES; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES; + "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES; + "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault; + "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; + LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; + "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = dev.fummicc1.example.CsvBuilderExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = auto; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + D308AB8728B67E1900ECA831 /* Build configuration list for PBXProject "CsvBuilderExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D308AB9928B67E1A00ECA831 /* Debug */, + D308AB9A28B67E1A00ECA831 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D308AB9B28B67E1A00ECA831 /* Build configuration list for PBXNativeTarget "CsvBuilderExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D308AB9C28B67E1A00ECA831 /* Debug */, + D308AB9D28B67E1A00ECA831 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D308AB8428B67E1900ECA831 /* Project object */; +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + 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/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..ce7639b --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift @@ -0,0 +1,26 @@ +// +// ContentView.swift +// CsvBuilderExample +// +// Created by Fumiya Tanaka on 2022/08/25. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundColor(.accentColor) + Text("Hello, world!") + } + .padding() + } +} + +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/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/Sources/Csv2Img/ColumnWrapper.swift b/Sources/Csv2Img/ColumnWrapper.swift index 1b91e8f..e955e14 100644 --- a/Sources/Csv2Img/ColumnWrapper.swift +++ b/Sources/Csv2Img/ColumnWrapper.swift @@ -12,7 +12,12 @@ import Foundation public struct CsvColumn { public var wrappedValue: String - public init() { - self.wrappedValue = "" + public init(_ wrappedValue: String? = nil) { + if let wrappedValue = wrappedValue { + self.wrappedValue = wrappedValue + } else { + self.wrappedValue = "" + } + print(Mirror(reflecting: self).description) } } diff --git a/Sources/CsvBuilder/Example.swift b/Sources/CsvBuilder/Example.swift index 0c9ad6a..c88e9ec 100644 --- a/Sources/CsvBuilder/Example.swift +++ b/Sources/CsvBuilder/Example.swift @@ -9,7 +9,7 @@ import Foundation import Csv2Img -public struct Example: CsvComposition { +public struct ExampleComposition: CsvComposition { @CsvColumn var name: String @@ -21,19 +21,6 @@ public struct Example: CsvComposition { @CsvRow(column: "name") var names: [String] -} - - -public struct ExampleBuilder: CsvBuilder { - var raw: String = """ -name,age -tanaka, 100 -sato, 99 -yamada, 98 -""" - public func build() async throws -> Csv { - return await Csv().loadFromString(raw) - } } From ef52ad5a6516f4892ffad9125a4facc5fb314167 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 15:04:25 +0900 Subject: [PATCH 05/12] #8 wip --- .../project.pbxproj | 31 +++++++++++++ .../xcshareddata/swiftpm/Package.resolved | 34 ++++++++++++++ .../CsvBuilderExample/ContentView.swift | 5 +++ .../CsvBuilderExample/CustomCsvBuilder.swift | 9 ++++ Package.swift | 6 +-- Sources/Csv2Img/ColumnWrapper.swift | 1 - Sources/CsvBuilder/CsvBuilder.swift | 45 +++++++++++++++---- Sources/CsvBuilder/Example.swift | 3 ++ 8 files changed, 120 insertions(+), 14 deletions(-) create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved create mode 100644 Examples/CsvBuilderExample/CsvBuilderExample/CustomCsvBuilder.swift diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj index 3e14597..f132525 100644 --- a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.pbxproj @@ -11,6 +11,9 @@ D308AB9228B67E1900ECA831 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D308AB9128B67E1900ECA831 /* ContentView.swift */; }; D308AB9428B67E1A00ECA831 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D308AB9328B67E1A00ECA831 /* Assets.xcassets */; }; D308AB9828B67E1A00ECA831 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D308AB9728B67E1A00ECA831 /* Preview Assets.xcassets */; }; + D34D4D3628B67ECF00A018FB /* CustomCsvBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D34D4D3528B67ECF00A018FB /* CustomCsvBuilder.swift */; }; + D34D4D3928B67F3200A018FB /* Csv2Img in Frameworks */ = {isa = PBXBuildFile; productRef = D34D4D3828B67F3200A018FB /* Csv2Img */; }; + D34D4D3B28B67F3200A018FB /* CsvBuilder in Frameworks */ = {isa = PBXBuildFile; productRef = D34D4D3A28B67F3200A018FB /* CsvBuilder */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -21,6 +24,7 @@ D308AB9528B67E1A00ECA831 /* CsvBuilderExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = CsvBuilderExample.entitlements; sourceTree = ""; }; D308AB9728B67E1A00ECA831 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; D308AB9F28B67E3700ECA831 /* Csv2Img */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = Csv2Img; path = ../..; sourceTree = ""; }; + D34D4D3528B67ECF00A018FB /* CustomCsvBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomCsvBuilder.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -28,6 +32,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D34D4D3928B67F3200A018FB /* Csv2Img in Frameworks */, + D34D4D3B28B67F3200A018FB /* CsvBuilder in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -40,6 +46,7 @@ D308AB9E28B67E3700ECA831 /* Packages */, D308AB8E28B67E1900ECA831 /* CsvBuilderExample */, D308AB8D28B67E1900ECA831 /* Products */, + D34D4D3728B67F3200A018FB /* Frameworks */, ); sourceTree = ""; }; @@ -59,6 +66,7 @@ D308AB9328B67E1A00ECA831 /* Assets.xcassets */, D308AB9528B67E1A00ECA831 /* CsvBuilderExample.entitlements */, D308AB9628B67E1A00ECA831 /* Preview Content */, + D34D4D3528B67ECF00A018FB /* CustomCsvBuilder.swift */, ); path = CsvBuilderExample; sourceTree = ""; @@ -79,6 +87,13 @@ name = Packages; sourceTree = ""; }; + D34D4D3728B67F3200A018FB /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -95,6 +110,10 @@ dependencies = ( ); name = CsvBuilderExample; + packageProductDependencies = ( + D34D4D3828B67F3200A018FB /* Csv2Img */, + D34D4D3A28B67F3200A018FB /* CsvBuilder */, + ); productName = CsvBuilderExample; productReference = D308AB8C28B67E1900ECA831 /* CsvBuilderExample.app */; productType = "com.apple.product-type.application"; @@ -150,6 +169,7 @@ buildActionMask = 2147483647; files = ( D308AB9228B67E1900ECA831 /* ContentView.swift in Sources */, + D34D4D3628B67ECF00A018FB /* CustomCsvBuilder.swift in Sources */, D308AB9028B67E1900ECA831 /* CsvBuilderExampleApp.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -364,6 +384,17 @@ defaultConfigurationName = Release; }; /* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + D34D4D3828B67F3200A018FB /* Csv2Img */ = { + isa = XCSwiftPackageProductDependency; + productName = Csv2Img; + }; + D34D4D3A28B67F3200A018FB /* CsvBuilder */ = { + isa = XCSwiftPackageProductDependency; + productName = CsvBuilder; + }; +/* End XCSwiftPackageProductDependency section */ }; rootObject = D308AB8428B67E1900ECA831 /* Project object */; } 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..ebd69bc --- /dev/null +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,34 @@ +{ + "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" + } + }, + { + "package": "SwiftSyntax", + "repositoryURL": "https://github.com/apple/swift-syntax", + "state": { + "branch": "main", + "revision": "17b81be00bb918fa8d136eb80fab3d4e642202ad", + "version": null + } + } + ] + }, + "version": 1 +} diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift index ce7639b..cd9db86 100644 --- a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift +++ b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift @@ -6,6 +6,7 @@ // import SwiftUI +import CsvBuilder struct ContentView: View { var body: some View { @@ -16,6 +17,10 @@ struct ContentView: View { Text("Hello, world!") } .padding() + .onAppear { + let example = ExampleComposition() + try! CsvBuilder.inject(composition: example) + } } } 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/Package.swift b/Package.swift index 323bcec..e66d984 100644 --- a/Package.swift +++ b/Package.swift @@ -53,11 +53,7 @@ let package = Package( .target( name: "CsvBuilder", dependencies: [ - "Csv2Img", - .product( - name: "SwiftSyntaxParser", - package: "swift-syntax" - ) + "Csv2Img" ] ), .testTarget( diff --git a/Sources/Csv2Img/ColumnWrapper.swift b/Sources/Csv2Img/ColumnWrapper.swift index e955e14..ccd396a 100644 --- a/Sources/Csv2Img/ColumnWrapper.swift +++ b/Sources/Csv2Img/ColumnWrapper.swift @@ -18,6 +18,5 @@ public struct CsvColumn { } else { self.wrappedValue = "" } - print(Mirror(reflecting: self).description) } } diff --git a/Sources/CsvBuilder/CsvBuilder.swift b/Sources/CsvBuilder/CsvBuilder.swift index 9166ae0..8d0f35b 100644 --- a/Sources/CsvBuilder/CsvBuilder.swift +++ b/Sources/CsvBuilder/CsvBuilder.swift @@ -7,20 +7,49 @@ import Foundation import Csv2Img -import SwiftSyntaxParser public enum CsvBuilderError: Error { } -public protocol CsvBuilder { - func build() throws -> Csv -} +public enum CsvBuilder { -public protocol CsvComposition { -} + static let columnType: String = #"^CsvColumn\(wrappedValue: \".?\"\)$"# + static let rowType: String = #"^CsvRow\(wrappedValue:.+, column: \".?\"\)$"# -extension CsvBuilder { - public func build() throws -> Csv { + public static func inject(composition: Composition) throws -> Composition { + let mirror = Mirror(reflecting: composition) + let children = mirror.children + for child in children { + let value = String(describing: child.value) + guard let _ = child.label else { + continue + } + let columnExp = try NSRegularExpression(pattern: columnType) + let columnMatches = columnExp.matches( + in: value, + range: NSRange(location: 0, length: value.count) + ) + + if !columnMatches.isEmpty { + print(columnMatches) + } + + let rowExp = try NSRegularExpression(pattern: rowType) + let rowMatches = rowExp.matches( + in: value, + range: NSRange(location: 0, length: value.count) + ) + if !rowMatches.isEmpty { + print(rowMatches) + } + } fatalError() } + + public static func build() throws -> Csv { + fatalError() + } +} + +public protocol CsvComposition { } diff --git a/Sources/CsvBuilder/Example.swift b/Sources/CsvBuilder/Example.swift index c88e9ec..e7153e8 100644 --- a/Sources/CsvBuilder/Example.swift +++ b/Sources/CsvBuilder/Example.swift @@ -23,4 +23,7 @@ public struct ExampleComposition: CsvComposition { var names: [String] + public init() { + print(Mirror(reflecting: self)) + } } From ce33a7eb04a44c6ddc8d0559b01c6ef157774205 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:15:25 +0900 Subject: [PATCH 06/12] #8 Complete CsvBuilder with Mirror --- Sources/Csv2Img/Csv.swift | 4 +- Sources/Csv2Img/RowWrapper.swift | 4 +- Sources/CsvBuilder/CsvBuilder.swift | 66 ++++++++++++++----- Sources/CsvBuilder/CsvCompositionColumn.swift | 24 +++++++ Sources/CsvBuilder/Example.swift | 19 ++---- 5 files changed, 82 insertions(+), 35 deletions(-) create mode 100644 Sources/CsvBuilder/CsvCompositionColumn.swift 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 index 2f335f3..5cc5c4f 100644 --- a/Sources/Csv2Img/RowWrapper.swift +++ b/Sources/Csv2Img/RowWrapper.swift @@ -1,5 +1,5 @@ // -// CsvRow.swift +// CsvRows.swift // // // Created by Fumiya Tanaka on 2022/08/24. @@ -9,7 +9,7 @@ import Foundation @propertyWrapper -public struct CsvRow { +public struct CsvRows { public var wrappedValue: [String] public var column: String diff --git a/Sources/CsvBuilder/CsvBuilder.swift b/Sources/CsvBuilder/CsvBuilder.swift index 8d0f35b..b28e958 100644 --- a/Sources/CsvBuilder/CsvBuilder.swift +++ b/Sources/CsvBuilder/CsvBuilder.swift @@ -13,41 +13,73 @@ public enum CsvBuilderError: Error { public enum CsvBuilder { - static let columnType: String = #"^CsvColumn\(wrappedValue: \".?\"\)$"# - static let rowType: String = #"^CsvRow\(wrappedValue:.+, column: \".?\"\)$"# + static let rowRegex: String = #"^CsvRows\(wrappedValue: (\[.*\]), column: \"(.+)\"\)$"# - public static func inject(composition: Composition) throws -> Composition { + public static func build(composition: Composition) 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 columnExp = try NSRegularExpression(pattern: columnType) - let columnMatches = columnExp.matches( - in: value, - range: NSRange(location: 0, length: value.count) - ) - if !columnMatches.isEmpty { - print(columnMatches) - } - - let rowExp = try NSRegularExpression(pattern: rowType) + let rowExp = try NSRegularExpression(pattern: rowRegex) let rowMatches = rowExp.matches( in: value, range: NSRange(location: 0, length: value.count) ) if !rowMatches.isEmpty { - print(rowMatches) + 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) + } + } } } - fatalError() + 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.. Csv { - fatalError() + static func trim(str: String) -> [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/CsvCompositionColumn.swift b/Sources/CsvBuilder/CsvCompositionColumn.swift new file mode 100644 index 0000000..4a4eb93 --- /dev/null +++ b/Sources/CsvBuilder/CsvCompositionColumn.swift @@ -0,0 +1,24 @@ +// +// CsvCompositionColumn.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 index e7153e8..9011dd8 100644 --- a/Sources/CsvBuilder/Example.swift +++ b/Sources/CsvBuilder/Example.swift @@ -10,20 +10,11 @@ import Csv2Img public struct ExampleComposition: CsvComposition { - @CsvColumn - var name: String + @CsvRows(column: "age") + public var ages: [String] - @CsvColumn - var age: String + @CsvRows(column: "name") + public var names: [String] - @CsvRow(column: "age") - var ages: [String] - - @CsvRow(column: "name") - var names: [String] - - - public init() { - print(Mirror(reflecting: self)) - } + public init() { } } From 544b99eb0dfa1a4b56e16fa5f52ad9b8749f25cf Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:15:39 +0900 Subject: [PATCH 07/12] #8 Updated Examples --- .../xcshareddata/swiftpm/Package.resolved | 9 +++++++++ .../CsvBuilderExample/ContentView.swift | 18 +++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Csv2ImageApp/Csv2ImageApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Csv2ImageApp/Csv2ImageApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 9976ada..2380d3c 100644 --- a/Csv2ImageApp/Csv2ImageApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Csv2ImageApp/Csv2ImageApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -18,6 +18,15 @@ "revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", "version": "1.0.0" } + }, + { + "package": "SwiftSyntax", + "repositoryURL": "https://github.com/apple/swift-syntax", + "state": { + "branch": "main", + "revision": "8c76dc394f8a709c1368cb61d7a0217dd8dea834", + "version": null + } } ] }, diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift index cd9db86..9067792 100644 --- a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift +++ b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift @@ -9,17 +9,29 @@ 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() - .onAppear { - let example = ExampleComposition() - try! CsvBuilder.inject(composition: example) + .task { + composition.ages.append("99") + composition.names.append("Yamada") + let csv = try! CsvBuilder.build(composition: composition) + let data = try! await csv.generate(fontSize: 20, exportType: .png) + self.image = data.base as! CGImage } } } From eac4c16c7782de7057e08d6d636e43ce71554a0f Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:26:16 +0900 Subject: [PATCH 08/12] #8 Rename --- .../{CsvCompositionColumn.swift => CsvCompositionElement.swift} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Sources/CsvBuilder/{CsvCompositionColumn.swift => CsvCompositionElement.swift} (91%) diff --git a/Sources/CsvBuilder/CsvCompositionColumn.swift b/Sources/CsvBuilder/CsvCompositionElement.swift similarity index 91% rename from Sources/CsvBuilder/CsvCompositionColumn.swift rename to Sources/CsvBuilder/CsvCompositionElement.swift index 4a4eb93..cbdc53e 100644 --- a/Sources/CsvBuilder/CsvCompositionColumn.swift +++ b/Sources/CsvBuilder/CsvCompositionElement.swift @@ -1,5 +1,5 @@ // -// CsvCompositionColumn.swift +// CsvCompositionElement.swift // // // Created by Fumiya Tanaka on 2022/08/25. From 7d478ee414d27bea61be87d82bf98ab992b963e8 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:31:20 +0900 Subject: [PATCH 09/12] #8 Removed CsvColumn --- Sources/Csv2Img/ColumnWrapper.swift | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Sources/Csv2Img/ColumnWrapper.swift diff --git a/Sources/Csv2Img/ColumnWrapper.swift b/Sources/Csv2Img/ColumnWrapper.swift deleted file mode 100644 index ccd396a..0000000 --- a/Sources/Csv2Img/ColumnWrapper.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// ColumnWrapper.swift -// -// -// Created by Fumiya Tanaka on 2022/08/24. -// - -import Foundation - - -@propertyWrapper -public struct CsvColumn { - public var wrappedValue: String - - public init(_ wrappedValue: String? = nil) { - if let wrappedValue = wrappedValue { - self.wrappedValue = wrappedValue - } else { - self.wrappedValue = "" - } - } -} From 623c7c6a581953a320a60444a0f94e46bc9868d2 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:35:15 +0900 Subject: [PATCH 10/12] #8 Modified interfaces of CsvComposition --- .../CsvBuilderExample/ContentView.swift | 2 +- Sources/CsvBuilder/CsvBuilder.swift | 5 +---- Sources/CsvBuilder/CsvComposition.swift | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 Sources/CsvBuilder/CsvComposition.swift diff --git a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift index 9067792..6d17a8c 100644 --- a/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift +++ b/Examples/CsvBuilderExample/CsvBuilderExample/ContentView.swift @@ -29,7 +29,7 @@ struct ContentView: View { .task { composition.ages.append("99") composition.names.append("Yamada") - let csv = try! CsvBuilder.build(composition: composition) + let csv = try! composition.build() let data = try! await csv.generate(fontSize: 20, exportType: .png) self.image = data.base as! CGImage } diff --git a/Sources/CsvBuilder/CsvBuilder.swift b/Sources/CsvBuilder/CsvBuilder.swift index b28e958..b9bb3fe 100644 --- a/Sources/CsvBuilder/CsvBuilder.swift +++ b/Sources/CsvBuilder/CsvBuilder.swift @@ -15,7 +15,7 @@ public enum CsvBuilder { static let rowRegex: String = #"^CsvRows\(wrappedValue: (\[.*\]), column: \"(.+)\"\)$"# - public static func build(composition: Composition) throws -> Csv { + public static func build(composition: CsvComposition) throws -> Csv { let mirror = Mirror(reflecting: composition) let children = mirror.children @@ -82,6 +82,3 @@ public enum CsvBuilder { return rows } } - -public protocol CsvComposition { -} 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) + } +} From a624f26471d398769abf966e06b0f00f329a35d2 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:39:02 +0900 Subject: [PATCH 11/12] #8 Removed unused dependency --- .../xcshareddata/swiftpm/Package.resolved | 9 --------- Package.swift | 7 +------ 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index ebd69bc..ff3d932 100644 --- a/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Examples/CsvBuilderExample/CsvBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -18,15 +18,6 @@ "revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", "version": "1.0.0" } - }, - { - "package": "SwiftSyntax", - "repositoryURL": "https://github.com/apple/swift-syntax", - "state": { - "branch": "main", - "revision": "17b81be00bb918fa8d136eb80fab3d4e642202ad", - "version": null - } } ] }, diff --git a/Package.swift b/Package.swift index e66d984..8c7ec92 100644 --- a/Package.swift +++ b/Package.swift @@ -10,10 +10,6 @@ let argumentParser: PackageDescription.Package.Dependency = .package( let docc: PackageDescription.Package.Dependency = .package( url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0" ) -let swiftSyntax: PackageDescription.Package.Dependency = .package( - url: "https://github.com/apple/swift-syntax", - branch: "main" -) let package = Package( name: "Csv2Img", @@ -37,8 +33,7 @@ let package = Package( // Dependencies declare other packages that this package depends on. // .package(url: /* package url */, from: "1.0.0"), argumentParser, - docc, - swiftSyntax, + docc ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. From 6a41a7e0fa44122356eed418e9062221df29cad2 Mon Sep 17 00:00:00 2001 From: fummicc1 Date: Thu, 25 Aug 2022 17:48:09 +0900 Subject: [PATCH 12/12] #8 Updated docs --- Package.resolved | 9 ----- README.md | 38 ++++++++++++++++++- docs/data/documentation/csv2img.json | 2 +- .../csv2img/anycsvexportable.json | 2 +- .../csv2img/anycsvexportable/base.json | 2 +- .../csv2img/anycsvexportable/init(_:).json | 2 +- docs/data/documentation/csv2img/csv.json | 2 +- .../documentation/csv2img/csv/columnname.json | 2 +- .../csv2img/csv/columnname/init(value:).json | 2 +- .../csv2img/csv/columnname/value.json | 2 +- .../csv2img/csv/columnnames.json | 2 +- .../data/documentation/csv2img/csv/error.json | 2 +- .../csv/error/cannotaccessfile(url:).json | 2 +- .../csv2img/csv/error/emptydata.json | 2 +- .../csv/error/error-implementations.json | 2 +- .../invaliddownloadresource(url:data:).json | 2 +- .../csv/error/invalidexporttype(_:).json | 2 +- .../invalidlocalresource(url:data:).json | 2 +- .../csv/error/localizeddescription.json | 2 +- .../csv2img/csv/error/underlying(_:).json | 2 +- .../csv2img/csv/error/workinprogress.json | 2 +- .../csv2img/csv/exporttype-swift.enum.json | 2 +- .../csv/exporttype-swift.enum/!=(_:_:).json | 2 +- .../equatable-implementations.json | 2 +- .../exporttype-swift.enum/fileextension.json | 2 +- .../exporttype-swift.enum/hash(into:).json | 2 +- .../csv/exporttype-swift.enum/hashvalue.json | 2 +- .../init(rawvalue:).json | 2 +- .../csv/exporttype-swift.enum/pdf.json | 2 +- .../csv/exporttype-swift.enum/png.json | 2 +- .../rawrepresentable-implementations.json | 2 +- .../csv/exporttype-swift.enum/uttype.json | 2 +- .../csv/exporttype-swift.property.json | 2 +- .../csv/generate(fontsize:exporttype:).json | 2 +- ...wstring:columnnames:rows:exporttype:).json | 2 +- .../documentation/csv2img/csv/isloading.json | 2 +- ...checkaccesssecurityscope:exporttype:).json | 2 +- ...dfromnetwork(_:separator:exporttype:).json | 2 +- ...ng(_:separator:maxlength:exporttype:).json | 2 +- .../csv2img/csv/progresspublisher.json | 2 +- .../documentation/csv2img/csv/rawstring.json | 2 +- docs/data/documentation/csv2img/csv/row.json | 2 +- .../documentation/csv2img/csv/row/index.json | 2 +- .../csv2img/csv/row/init(index:values:).json | 2 +- .../documentation/csv2img/csv/row/values.json | 2 +- docs/data/documentation/csv2img/csv/rows.json | 2 +- .../documentation/csv2img/csv/separator.json | 2 +- .../documentation/csv2img/csv/write(to:).json | 2 +- docs/data/documentation/csv2img/csvrows.json | 1 + .../documentation/csv2img/csvrows/column.json | 1 + .../csv2img/csvrows/init(column:).json | 1 + .../csv2img/csvrows/wrappedvalue.json | 1 + .../csv2img/imagemakingerror.json | 2 +- .../error-implementations.json | 2 +- .../localizeddescription.json | 2 +- .../imagemakingerror/nocontextavailable.json | 2 +- .../imagemakingerror/underlying(_:).json | 2 +- docs/data/documentation/csv2img/maker.json | 2 +- .../csv2img/maker/exportable.json | 2 +- .../maker/make(columns:rows:progress:).json | 2 +- .../csv2img/maker/maximumrowcount.json | 2 +- .../csv2img/maker/setfontsize(_:).json | 2 +- .../documentation/csv2img/pdfmakingerror.json | 2 +- .../csv2img/pdfmakingerror/emptyrows.json | 2 +- .../pdfmakingerror/failedtogeneratepdf.json | 2 +- .../pdfmakingerror/localizeddescription.json | 2 +- .../pdfmakingerror/nocontextavailabe.json | 2 +- .../documentation/csv2img/pdfmetadata.json | 2 +- .../pdfmetadata/init(author:title:).json | 2 +- .../csv2img/pdfmetadata/title.json | 2 +- .../csv2img/csvrows/column/index.html | 1 + docs/documentation/csv2img/csvrows/index.html | 1 + .../csv2img/csvrows/init(column:)/index.html | 1 + .../csv2img/csvrows/wrappedvalue/index.html | 1 + docs/index.md | 38 ++++++++++++++++++- docs/index/index.json | 2 +- generate_dmg.sh | 2 + 77 files changed, 147 insertions(+), 78 deletions(-) create mode 100644 docs/data/documentation/csv2img/csvrows.json create mode 100644 docs/data/documentation/csv2img/csvrows/column.json create mode 100644 docs/data/documentation/csv2img/csvrows/init(column:).json create mode 100644 docs/data/documentation/csv2img/csvrows/wrappedvalue.json create mode 100644 docs/documentation/csv2img/csvrows/column/index.html create mode 100644 docs/documentation/csv2img/csvrows/index.html create mode 100644 docs/documentation/csv2img/csvrows/init(column:)/index.html create mode 100644 docs/documentation/csv2img/csvrows/wrappedvalue/index.html create mode 100644 generate_dmg.sh diff --git a/Package.resolved b/Package.resolved index 8400a22..ed9e418 100644 --- a/Package.resolved +++ b/Package.resolved @@ -18,15 +18,6 @@ "revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", "version": "1.0.0" } - }, - { - "package": "SwiftSyntax", - "repositoryURL": "https://github.com/apple/swift-syntax", - "state": { - "branch": "main", - "revision": "17b81be00bb918fa8d136eb80fab3d4e642202ad", - "version": null - } } ] }, 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/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 +