Update comment

This commit is contained in:
Yasuhiro Hatta 2016-10-23 02:20:24 +09:00
parent fde92925fc
commit ac6d663703
4 changed files with 2 additions and 7 deletions

View File

@ -13,7 +13,6 @@ internal let defaultTrimFields = false
internal let defaultDelimiter = UnicodeScalar(UInt8(0x2c)) // ","
internal let defaultWhitespaces = CharacterSet.whitespaces
// TODO: Documentation
/// No overview available.
public struct CSVConfiguration {

View File

@ -28,7 +28,6 @@ extension CSV: IteratorProtocol {
}
// TODO: Documentation
/// No overview available.
public struct CSV {
@ -153,7 +152,7 @@ public struct CSV {
}
/// Unavailable.
@available(*, unavailable, message: "Use init(stream:codecType:config:) instead")
@available(*, unavailable, message: "Use init(stream:codecType:endian:config:) instead")
public init<T: UnicodeCodec>(
stream: InputStream,
codecType: T.Type,
@ -177,7 +176,7 @@ public struct CSV {
}
/// Unavailable.
@available(*, unavailable, message: "Use init(stream:codecType:config:) instead")
@available(*, unavailable, message: "Use init(stream:codecType:endian:config:) instead")
public init<T: UnicodeCodec>(
stream: InputStream,
codecType: T.Type,
@ -205,7 +204,6 @@ public struct CSV {
/// - parameter stream: An `InputStream` object. If the stream is not open,
/// initializer opens automatically.
/// - parameter codecType: A `UnicodeCodec` type for `stream`.
/// - parameter endian: Endian to use when reading a stream. Default: `.big`.
/// - parameter config: CSV configuration.
public init<T: UnicodeCodec>(
stream: InputStream,

View File

@ -6,7 +6,6 @@
// Copyright © 2016 yaslab. All rights reserved.
//
// TODO: Documentation
/// No overview available.
public enum CSVError: Error {

View File

@ -6,7 +6,6 @@
// Copyright © 2016 yaslab. All rights reserved.
//
// TODO: Documentation
/// No overview available.
public enum Endian {