├── .gitignore ├── DelphiUtils_Test.dpr ├── DelphiUtils_Test.dproj ├── LICENSE ├── README.md ├── Utils.AtomicTypes.pas ├── Utils.Comparator.pas ├── Utils.Container.pas ├── Utils.JSON.Test.pas └── Utils.JSON.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /DelphiUtils_Test.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/DelphiUtils_Test.dpr -------------------------------------------------------------------------------- /DelphiUtils_Test.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/DelphiUtils_Test.dproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/README.md -------------------------------------------------------------------------------- /Utils.AtomicTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/Utils.AtomicTypes.pas -------------------------------------------------------------------------------- /Utils.Comparator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/Utils.Comparator.pas -------------------------------------------------------------------------------- /Utils.Container.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/Utils.Container.pas -------------------------------------------------------------------------------- /Utils.JSON.Test.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/Utils.JSON.Test.pas -------------------------------------------------------------------------------- /Utils.JSON.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flobernd/delphi-utils/HEAD/Utils.JSON.pas --------------------------------------------------------------------------------