Qore CsvUtil Module Reference 1.10.1
Loading...
Searching...
No Matches
CsvIterator.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2// Qore CsvIterator class definition
3
4/* CsvIterator.qc Copyright 2012 - 2023 Qore Technologies, s.r.o.
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23*/
24
25// assume local var scope, do not use "$" for vars, members, and method calls
26
28namespace CsvUtil {
30
39
40public:
42
49
50
52
60 constructor(Qore::AbstractLineIterator li, hash<auto> spec, hash<auto> opts) ;
61
62
64
71 constructor(Qore::InputStream input, string encoding = 'UTF-8', *hash<auto> opts) ;
72
73
75
84 constructor(Qore::InputStream input, string encoding = 'UTF-8', hash<auto> spec, hash<auto> opts) ;
85
86
87 auto memberGate(string name);
88
89}; // CsvIterator class
90}; // CsvUtil namespace
the AbstractCsvIterator class is an abstract base class that allows abstract CSV data to be iterated
Definition: AbstractCsvIterator.qc.dox.h:285
The CsvIterator class allows CSV sources to be iterated on a record basis.
Definition: CsvIterator.qc.dox.h:38
constructor(Qore::AbstractLineIterator li, *hash< auto > opts)
Creates the CsvIterator in single-type mode with general line iterator to read and an option hash.
constructor(Qore::AbstractLineIterator li, hash< auto > spec, hash< auto > opts)
Creates the CsvIterator in multi-type mode with general line iterator to read and optionally an optio...
constructor(Qore::InputStream input, string encoding='UTF-8', *hash< auto > opts)
Creates the CsvIterator from an InputStream and other arguments.
constructor(Qore::InputStream input, string encoding='UTF-8', hash< auto > spec, hash< auto > opts)
Creates the CsvIterator in multi-type mode from an InputStream and other arguments.
the CsvUtil namespace. All classes used in the CsvUtil module should be inside this namespace
Definition: AbstractCsvIterator.qc.dox.h:28