Do you commit the new section?
Because I'm full.
Le 3/10/15 09:39, Sven Van Caekenberghe a écrit :
Yes, there are a couple of newer features that were added after the
documentation was written. Keeping documentation up to date is also a PITA.
On 03 Oct 2015, at 08:54, stepharo wrote:
sven d
Yes, there are a couple of newer features that were added after the
documentation was written. Keeping documentation up to date is also a PITA.
> On 03 Oct 2015, at 08:54, stepharo wrote:
>
> sven do you think that we should add this to the chapter?
>
>
> Le 28/9/15 16:42, Sven Van Caekenberg
sven do you think that we should add this to the chapter?
Le 28/9/15 16:42, Sven Van Caekenberghe a écrit :
On 28 Sep 2015, at 15:04, Mariano Martinez Peck wrote:
Imagine something like this:
neoCSVReader := (NeoCSVReader on: stream).
neoCSVReader
separator: $,;
2015-09-28 17:33 GMT+02:00 Sven Van Caekenberghe :
>
> > On 28 Sep 2015, at 17:21, Nicolai Hess wrote:
> >
> > Thanks Mariano, Sven
> >
> >
> >
> > 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe :
> >
> > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck
> wrote:
> > >
> > > Imagine something
> On 28 Sep 2015, at 17:21, Nicolai Hess wrote:
>
> Thanks Mariano, Sven
>
>
>
> 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe :
>
> > On 28 Sep 2015, at 15:04, Mariano Martinez Peck
> > wrote:
> >
> > Imagine something like this:
> >
> > neoCSVReader := (NeoCSVReader on: stream).
> >
Thanks Mariano, Sven
2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe :
>
> > On 28 Sep 2015, at 15:04, Mariano Martinez Peck
> wrote:
> >
> > Imagine something like this:
> >
> > neoCSVReader := (NeoCSVReader on: stream).
> > neoCSVReader
> > separator: $,;
> >
> On 28 Sep 2015, at 15:04, Mariano Martinez Peck wrote:
>
> Imagine something like this:
>
> neoCSVReader := (NeoCSVReader on: stream).
> neoCSVReader
> separator: $,;
> recordClass: PriceRecord;
> addIgnoredField; ""
> addField:
Imagine something like this:
neoCSVReader := (NeoCSVReader on: stream).
neoCSVReader
separator: $,;
recordClass: PriceRecord;
addIgnoredField; ""
addField: #securityUniqueId: ; ""
addField: #date: converter: [ :string | Date readFrom: string readStream
pattern: 'mmdd' ]; ""
addFloatField: #op