Re: [fpc-pascal] Container class for key-value pairs

2017-09-11 Thread Marc Santhoff
On Mo, 2017-09-11 at 00:40 -0700, leledumbo via fpc-pascal wrote: > > Which container class ist the easiest to use for key-value pairs? > > All are just as easy. Instead you should state for non-functional > requirements. Does it have to be fast? Does it have to be memory efficient? > Or as long a

Re: [fpc-pascal] Container class for key-value pairs

2017-09-11 Thread Marc Santhoff
On Mo, 2017-09-11 at 09:22 +0200, Michael Van Canneyt wrote: > > On Mon, 11 Sep 2017, Marc Santhoff wrote: > > > Hi, > > > > since I'm programming Pascal only on occasion I'd like to know: > > > > Which container class ist the easiest to use for key-value pairs? > > > > The goal is to store a con

Re: [fpc-pascal] Container class for key-value pairs

2017-09-11 Thread leledumbo via fpc-pascal
> Which container class ist the easiest to use for key-value pairs? All are just as easy. Instead you should state for non-functional requirements. Does it have to be fast? Does it have to be memory efficient? Or as long as you can access it as key-value then it would be fine no matter what the im

Re: [fpc-pascal] Container class for key-value pairs

2017-09-11 Thread Michael Van Canneyt
On Mon, 11 Sep 2017, Marc Santhoff wrote: Hi, since I'm programming Pascal only on occasion I'd like to know: Which container class ist the easiest to use for key-value pairs? The goal is to store a configuration set from a hardware measuring device having 81 items. This item set is fixed,

[fpc-pascal] Container class for key-value pairs

2017-09-10 Thread Marc Santhoff
Hi, since I'm programming Pascal only on occasion I'd like to know: Which container class ist the easiest to use for key-value pairs? The goal is to store a configuration set from a hardware measuring device having 81 items. This item set is fixed, no change. The values are parsed from json data