Files
moxa/stdlib/go1_11_encoding_csv.go

31 lines
855 B
Go

// +build go1.11,!go1.12
package stdlib
// Code generated by 'goexports encoding/csv'. DO NOT EDIT.
import (
"encoding/csv"
"reflect"
)
func init() {
Symbols["encoding/csv"] = map[string]reflect.Value{
// function, constant and variable definitions
"ErrBareQuote": reflect.ValueOf(&csv.ErrBareQuote).Elem(),
"ErrFieldCount": reflect.ValueOf(&csv.ErrFieldCount).Elem(),
"ErrQuote": reflect.ValueOf(&csv.ErrQuote).Elem(),
"ErrTrailingComma": reflect.ValueOf(&csv.ErrTrailingComma).Elem(),
"NewReader": reflect.ValueOf(csv.NewReader),
"NewWriter": reflect.ValueOf(csv.NewWriter),
// type definitions
"ParseError": reflect.ValueOf((*csv.ParseError)(nil)),
"Reader": reflect.ValueOf((*csv.Reader)(nil)),
"Writer": reflect.ValueOf((*csv.Writer)(nil)),
// interface wrapper definitions
}
}