CodeSnip Old Code (SVN)
A repository for source code snippets, designed with Pascal in mind.
Brought to you by:
delphidabbler
package Collections; {$R *.res} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'DelphiColl library by Ciobanu Alexandru'} {$RUNONLY} {$IMPLICITBUILD ON} requires rtl; contains Collections.Bags in 'Collections.Bags.pas', Collections.Base in 'Collections.Base.pas', Collections.BidiMaps in 'Collections.BidiMaps.pas', Collections.Dictionaries in 'Collections.Dictionaries.pas', Collections.Lists in 'Collections.Lists.pas', Collections.MultiMaps in 'Collections.MultiMaps.pas', Collections.Queues in 'Collections.Queues.pas', Collections.Sets in 'Collections.Sets.pas', Collections.Stacks in 'Collections.Stacks.pas', Collections.Dynamic in 'Collections.Dynamic.pas', Collections.BidiDictionaries in 'Collections.BidiDictionaries.pas'; end.