csv

lamp.table.csv$
object csv

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
csv.type

Members list

Value members

Concrete methods

def readHeterogeneousFromCSVChannel(columnTypes: Seq[(Int, ColumnDataType)], channel: ReadableByteChannel, device: Device, charset: CharsetDecoder, fieldSeparator: Char, quoteChar: Char, recordSeparator: String, maxLines: Long, header: Boolean, bufferSize: Int)(implicit scope: Scope): Either[String, Table]
def readHeterogeneousFromCSVFile(columnTypes: Seq[(Int, ColumnDataType)], file: File, device: Device, charset: CharsetDecoder, fieldSeparator: Char, quoteChar: Char, recordSeparator: String, maxLines: Long, header: Boolean)(implicit scope: Scope): Either[String, Table]
def renderToCSVString(table: Table, batchSize: Int, columnSeparator: Char, quoteChar: Char, recordSeparator: String, charset: Charset): String
def writeCSVToChannel(table: Table, channel: WritableByteChannel, batchSize: Int, columnSeparator: Char, quoteChar: Char, recordSeparator: String, charset: Charset): Unit