forked from vim-jp/vital.vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSV.txt
49 lines (29 loc) · 1.42 KB
/
CSV.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
*vital/Text/CSV.txt* CSV library.
Maintainer: tyru <[email protected]>
==============================================================================
CONTENTS *Vital.Text.CSV-contents*
INTRODUCTION |Vital.Text.CSV-introduction|
INTERFACE |Vital.Text.CSV-interface|
FUNCTIONS |Vital.Text.CSV-functions|
==============================================================================
INTRODUCTION *Vital.Text.CSV-introduction*
*Vital.Text.CSV* is a CSV parser and dumper.
==============================================================================
INTERFACE *Vital.Text.CSV-interface*
------------------------------------------------------------------------------
FUNCTIONS *Vital.Text.CSV-functions*
parse({csvstring}) *Vital.Text.CSV.parse()*
Parses records of CSV. Returns a list of objects.
parse_record({csvline}) *Vital.Text.CSV.parse_record()*
Parses a record of CSV. Returns an object.
parse_file({file}) *Vital.Text.CSV.parse_file()*
Parses a CSV file.
dump({listofdata}) *Vital.Text.CSV.dump()*
Converts a list of records to a CSV string.
dump_record({data}) *Vital.Text.CSV.dump_record()*
Converts a record (|List|) to a CSV string.
*Vital.Text.CSV.dump_file()*
dump_file({data}, {file} [, {append}])
Dumps {data} to {file}. If {append} is true, the data is appended.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl