├── .gitattributes ├── .gitignore ├── Arrays.cls ├── Collections.cls ├── Constructors.bas ├── DevUtils.bas ├── EscapeSequence.cls ├── Exception.bas ├── IComparable.cls ├── IEquatable.cls ├── IO.cls ├── KeyValuePair.cls ├── LICENSE.txt ├── List.cls ├── Map.cls ├── Math.cls ├── README.pod ├── Regexes.cls ├── Setx.cls ├── SortOrder_.bas ├── Stringx.cls ├── Test.bas ├── TestEntry.cls ├── TestGroup.cls ├── TestResult.cls ├── Variants.cls ├── XlUtils.cls ├── doc ├── Arrays.pod ├── Collections.pod ├── DevUtils.pod ├── IO.pod ├── List.pod ├── Map.pod ├── Math.pod ├── Regexes.pod ├── Setx.pod ├── Stringx.pod ├── Test.pod ├── Variants.pod └── XlUtils.pod └── tests ├── IO ├── .gitattributes ├── a.txt ├── b.txt ├── c.txt ├── d.txt ├── e.txt ├── f.txt ├── g.txt ├── h.txt ├── i.txt └── j.txt ├── Test_Arrays.bas ├── Test_Collections.bas ├── Test_IO.bas ├── Test_List.bas ├── Test_Map.bas ├── Test_Math.bas ├── Test_Setx.bas ├── Test_Stringx.bas ├── Test_Variants.bas └── Test_XlUtils.bas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Arrays.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Arrays.cls -------------------------------------------------------------------------------- /Collections.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Collections.cls -------------------------------------------------------------------------------- /Constructors.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Constructors.bas -------------------------------------------------------------------------------- /DevUtils.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/DevUtils.bas -------------------------------------------------------------------------------- /EscapeSequence.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/EscapeSequence.cls -------------------------------------------------------------------------------- /Exception.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Exception.bas -------------------------------------------------------------------------------- /IComparable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/IComparable.cls -------------------------------------------------------------------------------- /IEquatable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/IEquatable.cls -------------------------------------------------------------------------------- /IO.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/IO.cls -------------------------------------------------------------------------------- /KeyValuePair.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/KeyValuePair.cls -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/List.cls -------------------------------------------------------------------------------- /Map.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Map.cls -------------------------------------------------------------------------------- /Math.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Math.cls -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/README.pod -------------------------------------------------------------------------------- /Regexes.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Regexes.cls -------------------------------------------------------------------------------- /Setx.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Setx.cls -------------------------------------------------------------------------------- /SortOrder_.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/SortOrder_.bas -------------------------------------------------------------------------------- /Stringx.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Stringx.cls -------------------------------------------------------------------------------- /Test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Test.bas -------------------------------------------------------------------------------- /TestEntry.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/TestEntry.cls -------------------------------------------------------------------------------- /TestGroup.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/TestGroup.cls -------------------------------------------------------------------------------- /TestResult.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/TestResult.cls -------------------------------------------------------------------------------- /Variants.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/Variants.cls -------------------------------------------------------------------------------- /XlUtils.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/XlUtils.cls -------------------------------------------------------------------------------- /doc/Arrays.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Arrays.pod -------------------------------------------------------------------------------- /doc/Collections.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Collections.pod -------------------------------------------------------------------------------- /doc/DevUtils.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/DevUtils.pod -------------------------------------------------------------------------------- /doc/IO.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/IO.pod -------------------------------------------------------------------------------- /doc/List.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/List.pod -------------------------------------------------------------------------------- /doc/Map.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Map.pod -------------------------------------------------------------------------------- /doc/Math.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Math.pod -------------------------------------------------------------------------------- /doc/Regexes.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Regexes.pod -------------------------------------------------------------------------------- /doc/Setx.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Setx.pod -------------------------------------------------------------------------------- /doc/Stringx.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Stringx.pod -------------------------------------------------------------------------------- /doc/Test.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Test.pod -------------------------------------------------------------------------------- /doc/Variants.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/Variants.pod -------------------------------------------------------------------------------- /doc/XlUtils.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/doc/XlUtils.pod -------------------------------------------------------------------------------- /tests/IO/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /tests/IO/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/IO/b.txt: -------------------------------------------------------------------------------- 1 | asdf -------------------------------------------------------------------------------- /tests/IO/c.txt: -------------------------------------------------------------------------------- 1 | one 2 | two -------------------------------------------------------------------------------- /tests/IO/d.txt: -------------------------------------------------------------------------------- 1 | one 2 | two -------------------------------------------------------------------------------- /tests/IO/e.txt: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /tests/IO/f.txt: -------------------------------------------------------------------------------- 1 | Größenwahn -------------------------------------------------------------------------------- /tests/IO/g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/IO/g.txt -------------------------------------------------------------------------------- /tests/IO/h.txt: -------------------------------------------------------------------------------- 1 | One two three. 2 | Four five seven. -------------------------------------------------------------------------------- /tests/IO/i.txt: -------------------------------------------------------------------------------- 1 | This is the new text. -------------------------------------------------------------------------------- /tests/IO/j.txt: -------------------------------------------------------------------------------- 1 | Foobar -------------------------------------------------------------------------------- /tests/Test_Arrays.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Arrays.bas -------------------------------------------------------------------------------- /tests/Test_Collections.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Collections.bas -------------------------------------------------------------------------------- /tests/Test_IO.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_IO.bas -------------------------------------------------------------------------------- /tests/Test_List.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_List.bas -------------------------------------------------------------------------------- /tests/Test_Map.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Map.bas -------------------------------------------------------------------------------- /tests/Test_Math.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Math.bas -------------------------------------------------------------------------------- /tests/Test_Setx.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Setx.bas -------------------------------------------------------------------------------- /tests/Test_Stringx.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Stringx.bas -------------------------------------------------------------------------------- /tests/Test_Variants.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_Variants.bas -------------------------------------------------------------------------------- /tests/Test_XlUtils.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HALTEC/VBA-commons-lib/HEAD/tests/Test_XlUtils.bas --------------------------------------------------------------------------------