Repository URL to install this package:
|
Version:
1.0 ▾
|
!<arch>
__.PKGDEF 0 0 0 644 12413 `
go object linux amd64 go1.6 X:none
build id "b75d4eb23299419fc202f07c5dbbfc787704c36c"
$$
package csv
import bufio "bufio"
import bytes "bytes"
import errors "errors"
import io "io"
import utf8 "unicode/utf8"
import unicode "unicode"
import fmt "fmt"
import strings "strings"
type @"".ParseError struct { Line int; Column int; Err error }
func (@"".e·2 *@"".ParseError "esc:0x9") Error () (? string)
var @"".ErrTrailingComma error
var @"".ErrBareQuote error
var @"".ErrQuote error
var @"".ErrFieldCount error
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"bufio".Reader struct { @"bufio".buf []byte; @"bufio".rd @"io".Reader; @"bufio".r int; @"bufio".w int; @"bufio".err error; @"bufio".lastByte int; @"bufio".lastRuneSize int }
func (@"bufio".b·2 *@"bufio".Reader "esc:0x1") Buffered () (? int) { return @"bufio".b·2.@"bufio".w - @"bufio".b·2.@"bufio".r }
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") Discard (@"bufio".n·4 int) (@"bufio".discarded·1 int, @"bufio".err·2 error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x12a") Peek (@"bufio".n·4 int) (? []byte, ? error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") Read (@"bufio".p·4 []byte) (@"bufio".n·1 int, @"bufio".err·2 error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") ReadByte () (@"bufio".c·1 byte, @"bufio".err·2 error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") ReadBytes (@"bufio".delim·4 byte) (@"bufio".line·1 []byte, @"bufio".err·2 error)
func (@"bufio".b·4 *@"bufio".Reader "esc:0x82a") ReadLine () (@"bufio".line·1 []byte, @"bufio".isPrefix·2 bool, @"bufio".err·3 error)
func (@"bufio".b·4 *@"bufio".Reader "esc:0x80a") ReadRune () (@"bufio".r·1 rune, @"bufio".size·2 int, @"bufio".err·3 error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x12a") ReadSlice (@"bufio".delim·4 byte) (@"bufio".line·1 []byte, @"bufio".err·2 error)
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") ReadString (@"bufio".delim·4 byte) (@"bufio".line·1 string, @"bufio".err·2 error)
func (@"bufio".b·1 *@"bufio".Reader "esc:0x9") Reset (@"bufio".r·2 @"io".Reader) { @"bufio".b·1.@"bufio".reset(@"bufio".b·1.@"bufio".buf, @"bufio".r·2) }
func (@"bufio".b·2 *@"bufio".Reader "esc:0x1") UnreadByte () (? error) { if @"bufio".b·2.@"bufio".lastByte < int(0x0) || @"bufio".b·2.@"bufio".r == int(0x0) && @"bufio".b·2.@"bufio".w > int(0x0) { return @"bufio".ErrInvalidUnreadByte }; if @"bufio".b·2.@"bufio".r > int(0x0) { @"bufio".b·2.@"bufio".r-- } else { @"bufio".b·2.@"bufio".w = int(0x1) }; @"bufio".b·2.@"bufio".buf[@"bufio".b·2.@"bufio".r] = byte(@"bufio".b·2.@"bufio".lastByte); @"bufio".b·2.@"bufio".lastByte = int(-0x1); @"bufio".b·2.@"bufio".lastRuneSize = int(-0x1); return nil }
func (@"bufio".b·2 *@"bufio".Reader "esc:0x1") UnreadRune () (? error) { if @"bufio".b·2.@"bufio".lastRuneSize < int(0x0) || @"bufio".b·2.@"bufio".r < @"bufio".b·2.@"bufio".lastRuneSize { return @"bufio".ErrInvalidUnreadRune }; @"bufio".b·2.@"bufio".r -= @"bufio".b·2.@"bufio".lastRuneSize; @"bufio".b·2.@"bufio".lastByte = int(-0x1); @"bufio".b·2.@"bufio".lastRuneSize = int(-0x1); return nil }
func (@"bufio".b·3 *@"bufio".Reader "esc:0x10a") WriteTo (@"bufio".w·4 @"io".Writer) (@"bufio".n·1 int64, @"bufio".err·2 error)
func (@"bufio".b·1 *@"bufio".Reader "esc:0x9") @"bufio".fill ()
func (@"bufio".b·2 *@"bufio".Reader "esc:0x22") @"bufio".readErr () (? error) { var @"bufio".err·3 error; ; @"bufio".err·3 = @"bufio".b·2.@"bufio".err; @"bufio".b·2.@"bufio".err = nil; return @"bufio".err·3 }
func (@"bufio".b·1 *@"bufio".Reader "esc:0x1") @"bufio".reset (@"bufio".buf·2 []byte, @"bufio".r·3 @"io".Reader) { *@"bufio".b·1 = (@"bufio".Reader{ @"bufio".buf:@"bufio".buf·2, @"bufio".rd:@"bufio".r·3, @"bufio".lastByte:int(-0x1), @"bufio".lastRuneSize:int(-0x1) }) }
func (@"bufio".b·3 *@"bufio".Reader "esc:0x9") @"bufio".writeBuf (@"bufio".w·4 @"io".Writer) (? int64, ? error)
type @"bytes".readOp int
type @"bytes".Buffer struct { @"bytes".buf []byte; @"bytes".off int; @"bytes".runeBytes [4]byte; @"bytes".bootstrap [64]byte; @"bytes".lastRead @"bytes".readOp }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x22") Bytes () (? []byte) { return @"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:] }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") Cap () (? int) { return cap(@"bytes".b·2.@"bytes".buf) }
func (@"bytes".b·1 *@"bytes".Buffer) Grow (@"bytes".n·2 int)
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") Len () (? int) { return len(@"bytes".b·2.@"bytes".buf) - @"bytes".b·2.@"bytes".off }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x22") Next (@"bytes".n·3 int) (? []byte) { @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x0); var @"bytes".m·4 int; ; @"bytes".m·4 = @"bytes".b·2.Len(); if @"bytes".n·3 > @"bytes".m·4 { @"bytes".n·3 = @"bytes".m·4 }; var @"bytes".data·5 []byte; ; @"bytes".data·5 = @"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:@"bytes".b·2.@"bytes".off + @"bytes".n·3]; @"bytes".b·2.@"bytes".off += @"bytes".n·3; if @"bytes".n·3 > int(0x0) { @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x2) }; return @"bytes".data·5 }
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") Read (@"bytes".p·4 []byte "esc:0x1") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x1") ReadByte () (@"bytes".c·1 byte, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") ReadBytes (@"bytes".delim·4 byte) (@"bytes".line·1 []byte, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") ReadFrom (@"bytes".r·4 @"io".Reader) (@"bytes".n·1 int64, @"bytes".err·2 error)
func (@"bytes".b·4 *@"bytes".Buffer "esc:0x1") ReadRune () (@"bytes".r·1 rune, @"bytes".size·2 int, @"bytes".err·3 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x1") ReadString (@"bytes".delim·4 byte) (@"bytes".line·1 string, @"bytes".err·2 error)
func (@"bytes".b·1 *@"bytes".Buffer "esc:0x1") Reset ()
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") String () (? string) { if @"bytes".b·2 == nil { return string("<nil>") }; return string(@"bytes".b·2.@"bytes".buf[@"bytes".b·2.@"bytes".off:]) }
func (@"bytes".b·1 *@"bytes".Buffer "esc:0x1") Truncate (@"bytes".n·2 int)
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") UnreadByte () (? error) { if @"bytes".b·2.@"bytes".lastRead != @"bytes".readOp(0x1) && @"bytes".b·2.@"bytes".lastRead != @"bytes".readOp(0x2) { return @"errors".New(string("bytes.Buffer: UnreadByte: previous operation was not a read")) }; @"bytes".b·2.@"bytes".lastRead = @"bytes".readOp(0x0); if @"bytes".b·2.@"bytes".off > int(0x0) { @"bytes".b·2.@"bytes".off-- }; return nil }
func (@"bytes".b·2 *@"bytes".Buffer "esc:0x1") UnreadRune () (? error)
func (@"bytes".b·3 *@"bytes".Buffer) Write (@"bytes".p·4 []byte "esc:0x9") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·2 *@"bytes".Buffer) WriteByte (@"bytes".c·3 byte) (? error)
func (@"bytes".b·3 *@"bytes".Buffer) WriteRune (@"bytes".r·4 rune) (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer) WriteString (@"bytes".s·4 string "esc:0x9") (@"bytes".n·1 int, @"bytes".err·2 error)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x9") WriteTo (@"bytes".w·4 @"io".Writer) (@"bytes".n·1 int64, @"bytes".err·2 error)
func (@"bytes".b·2 *@"bytes".Buffer) @"bytes".grow (@"bytes".n·3 int) (? int)
func (@"bytes".b·3 *@"bytes".Buffer "esc:0x22") @"bytes".readSlice (@"bytes".delim·4 byte) (@"bytes".line·1 []byte, @"bytes".err·2 error)
type @"".Reader struct { Comma rune; Comment rune; FieldsPerRecord int; LazyQuotes bool; TrailingComma bool; TrimLeadingSpace bool; @"".line int; @"".column int; @"".r *@"bufio".Reader; @"".field @"bytes".Buffer }
func (@"".r·3 *@"".Reader) Read () (@"".record·1 []string, @"".err·2 error)
func (@"".r·3 *@"".Reader) ReadAll () (@"".records·1 [][]string, @"".err·2 error)
func (@"".r·2 *@"".Reader "esc:0x1") @"".error (@"".err·3 error) (? error) { return (&@"".ParseError{ Line:@"".r·2.@"".line, Column:@"".r·2.@"".column, Err:@"".err·3 }) }
func (@"".r·4 *@"".Reader) @"".parseField () (@"".haveField·1 bool, @"".delim·2 rune, @"".err·3 error)
func (@"".r·3 *@"".Reader) @"".parseRecord () (@"".fields·1 []string, @"".err·2 error)
func (@"".r·3 *@"".Reader "esc:0x18a") @"".readRune () (? rune, ? error)
func (@"".r·2 *@"".Reader "esc:0x3a") @"".skip (@"".delim·3 rune) (? error)
func @"".NewReader (@"".r·2 @"io".Reader) (? *@"".Reader) { return (&@"".Reader{ Comma:rune(0x2c), @"".r:@"bufio".NewReader(@"".r·2) }) }
type @"bufio".Writer struct { @"bufio".err error; @"bufio".buf []byte; @"bufio".n int; @"bufio".wr @"io".Writer }
func (@"bufio".b·2 *@"bufio".Writer "esc:0x1") Available () (? int) { return len(@"bufio".b·2.@"bufio".buf) - @"bufio".b·2.@"bufio".n }
func (@"bufio".b·2 *@"bufio".Writer "esc:0x1") Buffered () (? int) { return @"bufio".b·2.@"bufio".n }
func (@"bufio".b·2 *@"bufio".Writer "esc:0x2a") Flush () (? error)
func (@"bufio".b·3 *@"bufio".Writer "esc:0x10a") ReadFrom (@"bufio".r·4 @"io".Reader) (@"bufio".n·1 int64, @"bufio".err·2 error)
func (@"bufio".b·1 *@"bufio".Writer "esc:0x1") Reset (@"bufio".w·2 @"io".Writer) { @"bufio".b·1.@"bufio".err = nil; @"bufio".b·1.@"bufio".n = int(0x0); @"bufio".b·1.@"bufio".wr = @"bufio".w·2 }
func (@"bufio".b·3 *@"bufio".Writer "esc:0x10a") Write (@"bufio".p·4 []byte) (@"bufio".nn·1 int, @"bufio".err·2 error)
func (@"bufio".b·2 *@"bufio".Writer "esc:0x2a") WriteByte (@"bufio".c·3 byte) (? error)
func (@"bufio".b·3 *@"bufio".Writer "esc:0x10a") WriteRune (@"bufio".r·4 rune) (@"bufio".size·1 int, @"bufio".err·2 error)
func (@"bufio".b·3 *@"bufio".Writer "esc:0x10a") WriteString (@"bufio".s·4 string "esc:0x9") (? int, ? error)
func (@"bufio".b·2 *@"bufio".Writer "esc:0x2a") @"bufio".flush () (? error)
type @"".Writer struct { Comma rune; UseCRLF bool; @"".w *@"bufio".Writer }
func (@"".w·2 *@"".Writer "esc:0x3a") Error () (? error)
func (@"".w·1 *@"".Writer "esc:0x9") Flush ()
func (@"".w·2 *@"".Writer "esc:0x3a") Write (@"".record·3 []string "esc:0x9") (@"".err·1 error)
func (@"".w·2 *@"".Writer "esc:0x3a") WriteAll (@"".records·3 [][]string "esc:0x9") (@"".err·1 error)
func (@"".w·2 *@"".Writer "esc:0x1") @"".fieldNeedsQuotes (@"".field·3 string) (? bool)
func @"".NewWriter (@"".w·2 @"io".Writer) (? *@"".Writer) { return (&@"".Writer{ Comma:rune(0x2c), @"".w:@"bufio".NewWriter(@"".w·2) }) }
func @"".init ()
var @"bufio".ErrInvalidUnreadByte error
var @"bufio".ErrInvalidUnreadRune error
func @"errors".New (@"errors".text·2 string) (? error) { return (&@"errors".errorString{ @"errors".s:@"errors".text·2 }) }
func @"bufio".NewReader (@"bufio".rd·2 @"io".Reader) (? *@"bufio".Reader) { return @"bufio".NewReaderSize(@"bufio".rd·2, int(0x1000)) }
func @"bufio".NewWriter (@"bufio".w·2 @"io".Writer) (? *@"bufio".Writer) { return @"bufio".NewWriterSize(@"bufio".w·2, int(0x1000)) }
type @"errors".errorString struct { @"errors".s string }
func (@"errors".e·2 *@"errors".errorString "esc:0x22") Error () (? string) { return @"errors".e·2.@"errors".s }
func @"bufio".NewReaderSize (@"bufio".rd·2 @"io".Reader, @"bufio".size·3 int) (? *@"bufio".Reader) { var @"bufio".b·4 *@"bufio".Reader; ; var @"bufio".ok·5 bool; ; @"bufio".b·4, @"bufio".ok·5 = @"bufio".rd·2.(*@"bufio".Reader); if @"bufio".ok·5 && len(@"bufio".b·4.@"bufio".buf) >= @"bufio".size·3 { return @"bufio".b·4 }; if @"bufio".size·3 < int(0x10) { @"bufio".size·3 = int(0x10) }; var @"bufio".r·6 *@"bufio".Reader; ; @"bufio".r·6 = new(@"bufio".Reader); @"bufio".r·6.@"bufio".reset(make([]byte, @"bufio".size·3), @"bufio".rd·2); return @"bufio".r·6 }
func @"bufio".NewWriterSize (@"bufio".w·2 @"io".Writer, @"bufio".size·3 int) (? *@"bufio".Writer) { var @"bufio".b·4 *@"bufio".Writer; ; var @"bufio".ok·5 bool; ; @"bufio".b·4, @"bufio".ok·5 = @"bufio".w·2.(*@"bufio".Writer); if @"bufio".ok·5 && len(@"bufio".b·4.@"bufio".buf) >= @"bufio".size·3 { return @"bufio".b·4 }; if @"bufio".size·3 <= int(0x0) { @"bufio".size·3 = int(0x1000) }; return (&@"bufio".Writer{ @"bufio".buf:make([]byte, @"bufio".size·3), @"bufio".wr:@"bufio".w·2 }) }
$$
_go_.o 0 0 0 644 68683 `
go object linux amd64 go1.6 X:none
!
go13ldbufio.abytes.aerrors.a
fmt.aio.aunicode.astrings.aunicode/utf8.a þ,"".(*ParseError).Error à à dH% HD$ðH;AF Hì 1ÛH$ H$¨ 1ÛH\$`H\$hH\$pH\$xH$ H$ H\$`Hû ñ HÇD$P HÇD$X H\$HH H$H$ H\$H|$ ª HÇD$ è HL$HD$ H\$HHL$8HHD$@=
\ HCH H$H$ H\$H|$ ( HD$HÇD$ è HL$HD$ H\$HHÃHL$8HHD$@=
Ð HCH´$ Hþ ³ H^HH$HKHL$è HL$HD$H\$HHà HL$8HHD$@= u]HCH H$HÇD$ H\$HH\$H\$PH\$H\$XH\$ è HL$(HD$0H$ H$¨ HĐ ÃLCL$HD$è 듉éFÿÿÿLCL$HD$è éÿÿÿ% éÌþÿÿLCL$HD$è éþÿÿ% éJþÿÿéþÿÿè éýÿÿÌÌÌÌÌÌÌÌ
type.int Ö runtime.convT2E (runtime.writeBarrier ¾ type.int runtime.convT2E ì (runtime.writeBarrier Ø runtime.convI2E ¤ (runtime.writeBarrier À Dgo.string."line %d, column %d: %s" fmt.Sprintf .runtime.writebarrierptr ¾ .runtime.writebarrierptr .runtime.writebarrierptr ¾ 0runtime.morestack_noctxt 0 "".autotmp_0007 "type.interface {} "".autotmp_0006 "type.interface {} "".autotmp_0005 ¯"type.interface {} "".autotmp_0004 _(type.[3]interface {} "".autotmp_0001 &type.[]interface {} "".~r0 type.string "".e &type.*"".ParseError Ö h ð 1 ª¥4m Tgclocals·cb395d89503762333b1bfb09ba74eb12 Tgclocals·672aa9fe6872c20676e89d61cbf499e7 D$GOROOT/src/encoding/csv/reader.goþ"".NewReader à àdH% HD$H;A Hìø H$ H$ H\$hHD$pH$ HÇ H\$x1íH9ëtH[H- H9ë
µ HÇÁ ù HXH9Ó|yHD$8H H$è HD$HÇHø tRWÀHÇàè Ç , HD$PHl$8= uHh(H$ HÄø ÃL@(L$Hl$è HD$Pë ëªHT$0Hú} HÇD$0 H H$è HL$0HD$HD$@HD$HH H$HL$HL$è Ht$Hl$ HT$(HL$xH$ H¼$ WÀHÇÐè GøH´$ H´$ H¬$ H¬$¨ H$ H$° HL$XH$¸ HD$`H$À HDŽ$è ÿÿÿÿHDŽ$ð ÿÿÿÿH\$HHû t,H¬$ H\$Hl$H- H,$è HD$@éhþÿÿëÐ1À1ÉéIþÿÿè éÐýÿÿ
¶ $type.*bufio.Reader type."".Reader ¤ "runtime.newobject Øü runtime.duffzero (runtime.writeBarrier Ö .runtime.writebarrierptr ¢ "type.bufio.Reader ´ "runtime.newobject ê type.[]uint8 "runtime.makeslice ðª runtime.duffzero "type.bufio.Reader (runtime.typedmemmove Î 0runtime.morestack_noctxt 0ð "".autotmp_0013 Ïtype.*"".Reader "".autotmp_0012 $type.*bufio.Reader "".autotmp_0011 ¯"type.bufio.Reader bufio.r·3 ¿type.io.Reader bufio.buf·2 ßtype.[]uint8 bufio.b·1 ß$type.*bufio.Reader bufio.r·6 ï$type.*bufio.Reader bufio.size·3 type.int bufio.rd·2 ÿtype.io.Reader "".~r0 ÿ$type.*bufio.Reader bufio.rd·2 type.io.Reader "".~r1 type.*"".Reader "".r type.io.Reader "ð½ïðÉï
° ,ê°
Y/.Ã&