├── .gitattributes ├── .github └── workflows │ └── documentation.yml ├── .gitignore ├── CONTRIBUTING.md ├── FisoThemes.libcat.xml ├── LICENSE ├── README.md ├── assets └── images │ ├── Array List UML.bmp │ ├── Collections UML.bmp │ ├── List UML.bmp │ ├── Queue UML.bmp │ ├── Simple Example TcXaeShell Screencap 2.JPG │ ├── Simple Example TcXaeShell Screencap.JPG │ ├── Stack UML.bmp │ └── TwinCAT Dynamic Collections Interface UML.jpg ├── docs ├── docfx.json ├── index.md ├── metadata.json ├── template │ ├── logo.svg │ └── public │ │ ├── main.css │ │ └── main.js ├── toc.yml └── userguide │ ├── introduction.md │ └── toc.yml └── src ├── TwinCat Dynamic Collections.sln └── TwinCat Dynamic Collections ├── TcDynCollections ├── DUTs │ ├── Aliases │ │ ├── T_AVL_Map_Node.TcDUT │ │ ├── T_AVL_Node.TcDUT │ │ ├── T_BST_Traversal.TcDUT │ │ ├── T_Capacity.TcDUT │ │ ├── T_Comparison.TcDUT │ │ ├── T_Error.TcDUT │ │ ├── T_Generic.TcDUT │ │ ├── T_Hashmap_Bucket_Node.TcDUT │ │ ├── T_Hashset_Bucket_Node.TcDUT │ │ ├── T_List_Node.TcDUT │ │ ├── T_Map_Entry.TcDUT │ │ ├── T_Position.TcDUT │ │ └── T_Type.TcDUT │ ├── Enums │ │ ├── E_BINARY_SEARCH_TREE_TRAVERSAL.TcTLEO │ │ ├── E_COMPARISON.TcDUT │ │ └── E_ERROR_CODE.TcDUT │ └── Structs │ │ ├── ST_AVL_MAP_NODE.TcDUT │ │ ├── ST_AVL_NODE.TcDUT │ │ ├── ST_ERROR.TcDUT │ │ ├── ST_HASHMAP_BUCKET_NODE.TcDUT │ │ ├── ST_HASHSET_BUCKET_NODE.TcDUT │ │ ├── ST_LIST_NODE.TcDUT │ │ ├── ST_MAP_ENTRY.TcDUT │ │ ├── ST_ORDERED_HASHMAP_BUCKET_NODE.TcDUT │ │ └── ST_ORDERED_HASHSET_BUCKET_NODE.TcDUT ├── GVLs │ ├── GVL_Constants.TcGVL │ └── GVL_Errors.TcGVL ├── ITFs │ ├── Collections │ │ ├── I_Array.TcIO │ │ ├── I_Array_List.TcIO │ │ ├── I_Collection.TcIO │ │ ├── I_Deque.TcIO │ │ ├── I_Hash_Map.TcIO │ │ ├── I_Hash_Set.TcIO │ │ ├── I_List.TcIO │ │ ├── I_Map.TcIO │ │ ├── I_Queue.TcIO │ │ ├── I_Set.TcIO │ │ ├── I_Stack.TcIO │ │ ├── I_Tree_Map.TcIO │ │ ├── I_Tree_Set.TcIO │ │ └── Immutable │ │ │ ├── I_Immutable_Array.TcIO │ │ │ ├── I_Immutable_Collection.TcIO │ │ │ ├── I_Immutable_List.TcIO │ │ │ ├── I_Immutable_Map.TcIO │ │ │ └── I_Immutable_Set.TcIO │ ├── Enumerators │ │ ├── I_Enumerable.TcIO │ │ └── I_Enumerator.TcIO │ ├── Iterable │ │ └── I_Iterable.TcIO │ └── Misc │ │ └── I_Copyable.TcIO ├── POUs │ ├── Function Blocks │ │ ├── Collections │ │ │ ├── FB_Array.TcPOU │ │ │ ├── FB_Array_List.TcPOU │ │ │ ├── FB_Collection.TcPOU │ │ │ ├── FB_Deque.TcPOU │ │ │ ├── FB_Hash_Map.TcPOU │ │ │ ├── FB_Hash_Set.TcPOU │ │ │ ├── FB_List.TcPOU │ │ │ ├── FB_Ordered_Hash_Map.TcPOU │ │ │ ├── FB_Ordered_Hash_Set.TcPOU │ │ │ ├── FB_Queue.TcPOU │ │ │ ├── FB_Stack.TcPOU │ │ │ ├── FB_Tree_Map.TcPOU │ │ │ ├── FB_Tree_Multiset.TcPOU │ │ │ ├── FB_Tree_Set.TcPOU │ │ │ └── Immutable │ │ │ │ ├── FB_Immutable_Array.TcPOU │ │ │ │ ├── FB_Immutable_List.TcPOU │ │ │ │ ├── FB_Immutable_Map.TcPOU │ │ │ │ └── FB_Immutable_Set.TcPOU │ │ ├── Enumerators │ │ │ └── FB_Enumerator.TcPOU │ │ └── Misc │ │ │ └── FB_Free.TcPOU │ ├── Functions │ │ ├── F_Any_To_Generic.TcPOU │ │ ├── F_Clone_Generic.TcPOU │ │ ├── F_Compare_Any.TcPOU │ │ ├── F_Compare_Generics.TcPOU │ │ ├── F_Copy_Generic_Value.TcPOU │ │ ├── F_Delete_Generic.TcPOU │ │ ├── F_Error.TcPOU │ │ ├── F_Generic_To_DT.TcPOU │ │ ├── F_Generic_To_LREAL.TcPOU │ │ ├── F_Generic_To_LTIME.TcPOU │ │ ├── F_Generic_To_String.TcPOU │ │ ├── F_Is_Date_Generic.TcPOU │ │ ├── F_Is_Numeric_Generic.TcPOU │ │ ├── F_Is_Time_Generic.TcPOU │ │ ├── F_Malloc_Generic.TcPOU │ │ ├── F_Matching_Generics.TcPOU │ │ ├── F_Murmur3_Hash.TcPOU │ │ ├── F_Murmur_Scramble.TcPOU │ │ ├── F_String_Convertable_Generic.TcPOU │ │ ├── F_String_To_Any.TcPOU │ │ └── F_Swap_Generics.TcPOU │ └── MAIN.TcPOU ├── PlcTask.TcTTO ├── Project Information │ ├── F_GetCompany.TcPOU │ ├── F_GetTitle.TcPOU │ └── F_GetVersion.TcPOU ├── TcDynCollections.plcproj ├── UML │ └── Collections Interfaces.TcCD ├── Version │ └── Global_Version.TcGVL └── _Libraries │ └── beckhoff automation gmbh │ ├── tc2_standard │ └── 3.4.5.0 │ │ └── tc2_standard.compiled-library │ ├── tc2_system │ └── 3.6.4.0 │ │ └── tc2_system.compiled-library │ ├── tc2_utilities │ └── 3.8.1.0 │ │ └── tc2_utilities.compiled-library │ └── tc3_module │ └── 3.4.5.0 │ └── tc3_module.compiled-library ├── TcDynCollectionsTest ├── POUs │ ├── Function Blocks │ │ ├── FB_Array_List_Test_Suite.TcPOU │ │ ├── FB_Array_Test_Suite.TcPOU │ │ ├── FB_Deque_Test_Suite.TcPOU │ │ ├── FB_Hash_Map_Test_Suite.TcPOU │ │ ├── FB_Hash_Set_Test_Suite.TcPOU │ │ ├── FB_List_Test_Suite.TcPOU │ │ ├── FB_Ordered_Hash_Map_Test_Suite.TcPOU │ │ ├── FB_Ordered_Hash_Set_Test_Suite.TcPOU │ │ ├── FB_Queue_Test_Suite.TcPOU │ │ ├── FB_Stack_Test_Suite.TcPOU │ │ ├── FB_Tree_Map_Test_Suite.TcPOU │ │ ├── FB_Tree_Multiset_Test_Suite.TcPOU │ │ └── FB_Tree_Set_Test_Suite.TcPOU │ └── MAIN.TcPOU ├── PlcTask.TcTTO ├── TcDynCollectionsTest.plcproj ├── TcDynamicCollectionsRefactor.tmcRefac └── _Libraries │ ├── beckhoff automation gmbh │ ├── tc2_standard │ │ └── 3.4.5.0 │ │ │ └── tc2_standard.compiled-library │ ├── tc2_system │ │ └── 3.6.4.0 │ │ │ └── tc2_system.compiled-library │ ├── tc2_utilities │ │ └── 3.8.1.0 │ │ │ └── tc2_utilities.compiled-library │ └── tc3_module │ │ └── 3.4.5.0 │ │ └── tc3_module.compiled-library │ ├── fisothemes │ └── twincat dynamic collections │ │ └── 1.0.8 │ │ └── tcdyncollections_1.0.8.library │ ├── system │ ├── base interfaces │ │ └── 3.5.2.0 │ │ │ └── base_itfs.compiled-library │ ├── cmperrors2 interfaces │ │ └── 3.5.12.0 │ │ │ └── cmperrors2_itfs.compiled-library │ ├── sysdir │ │ └── 3.5.12.0 │ │ │ └── sysdir.compiled-library │ ├── sysfile │ │ └── 3.5.9.0 │ │ │ └── sysfile.compiled-library │ └── systypes2 interfaces │ │ └── 3.5.4.0 │ │ └── systypes_itfs.compiled-library │ └── www.tcunit.org │ └── tcunit │ └── 1.2.0.0 │ └── tcunit.library ├── TrialLicense.tclrs ├── TwinCat Dynamic Collections.tsproj └── _Boot ├── TargetDescription.xml └── TwinCAT RT (x64) ├── CurrentConfig.tszip ├── CurrentConfig ├── TcDynCollections.tpzip └── TcDynamicCollectionsRefactor.tpzip └── Plc ├── Port_851.autostart ├── Port_851.oce ├── Port_851.ocm ├── Port_852.autostart ├── Port_852.oce └── Port_852.ocm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FisoThemes.libcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/FisoThemes.libcat.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/Array List UML.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Array List UML.bmp -------------------------------------------------------------------------------- /assets/images/Collections UML.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Collections UML.bmp -------------------------------------------------------------------------------- /assets/images/List UML.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/List UML.bmp -------------------------------------------------------------------------------- /assets/images/Queue UML.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Queue UML.bmp -------------------------------------------------------------------------------- /assets/images/Simple Example TcXaeShell Screencap 2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Simple Example TcXaeShell Screencap 2.JPG -------------------------------------------------------------------------------- /assets/images/Simple Example TcXaeShell Screencap.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Simple Example TcXaeShell Screencap.JPG -------------------------------------------------------------------------------- /assets/images/Stack UML.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/Stack UML.bmp -------------------------------------------------------------------------------- /assets/images/TwinCAT Dynamic Collections Interface UML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/assets/images/TwinCAT Dynamic Collections Interface UML.jpg -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/template/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/template/logo.svg -------------------------------------------------------------------------------- /docs/template/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/template/public/main.css -------------------------------------------------------------------------------- /docs/template/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/template/public/main.js -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /docs/userguide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/userguide/introduction.md -------------------------------------------------------------------------------- /docs/userguide/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/docs/userguide/toc.yml -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections.sln -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_AVL_Map_Node.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_AVL_Map_Node.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_AVL_Node.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_AVL_Node.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_BST_Traversal.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_BST_Traversal.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Capacity.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Capacity.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Comparison.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Comparison.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Error.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Error.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Generic.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Generic.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Hashmap_Bucket_Node.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Hashmap_Bucket_Node.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Hashset_Bucket_Node.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Hashset_Bucket_Node.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_List_Node.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_List_Node.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Map_Entry.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Map_Entry.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Position.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Position.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Type.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Aliases/T_Type.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_BINARY_SEARCH_TREE_TRAVERSAL.TcTLEO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_BINARY_SEARCH_TREE_TRAVERSAL.TcTLEO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_COMPARISON.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_COMPARISON.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_ERROR_CODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Enums/E_ERROR_CODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_AVL_MAP_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_AVL_MAP_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_AVL_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_AVL_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ERROR.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ERROR.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_HASHMAP_BUCKET_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_HASHMAP_BUCKET_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_HASHSET_BUCKET_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_HASHSET_BUCKET_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_LIST_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_LIST_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_MAP_ENTRY.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_MAP_ENTRY.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ORDERED_HASHMAP_BUCKET_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ORDERED_HASHMAP_BUCKET_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ORDERED_HASHSET_BUCKET_NODE.TcDUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/DUTs/Structs/ST_ORDERED_HASHSET_BUCKET_NODE.TcDUT -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/GVLs/GVL_Constants.TcGVL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/GVLs/GVL_Constants.TcGVL -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/GVLs/GVL_Errors.TcGVL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/GVLs/GVL_Errors.TcGVL -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Array.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Array.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Array_List.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Array_List.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Collection.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Collection.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Deque.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Deque.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Hash_Map.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Hash_Map.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Hash_Set.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Hash_Set.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_List.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_List.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Map.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Map.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Queue.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Queue.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Set.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Set.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Stack.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Stack.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Tree_Map.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Tree_Map.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Tree_Set.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/I_Tree_Set.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Array.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Array.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Collection.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Collection.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_List.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_List.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Map.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Map.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Set.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Collections/Immutable/I_Immutable_Set.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Enumerators/I_Enumerable.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Enumerators/I_Enumerable.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Enumerators/I_Enumerator.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Enumerators/I_Enumerator.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Iterable/I_Iterable.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Iterable/I_Iterable.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Misc/I_Copyable.TcIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Misc/I_Copyable.TcIO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Array.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Array.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Array_List.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Array_List.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Collection.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Collection.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Deque.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Deque.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Hash_Map.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Hash_Map.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Hash_Set.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Hash_Set.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_List.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_List.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Ordered_Hash_Map.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Ordered_Hash_Map.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Ordered_Hash_Set.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Ordered_Hash_Set.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Queue.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Queue.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Stack.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Stack.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Map.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Map.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Multiset.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Multiset.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Set.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/FB_Tree_Set.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Array.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Array.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_List.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_List.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Map.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Map.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Set.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Collections/Immutable/FB_Immutable_Set.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Enumerators/FB_Enumerator.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Enumerators/FB_Enumerator.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Misc/FB_Free.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Function Blocks/Misc/FB_Free.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Any_To_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Any_To_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Clone_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Clone_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Compare_Any.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Compare_Any.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Compare_Generics.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Compare_Generics.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Copy_Generic_Value.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Copy_Generic_Value.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Delete_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Delete_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Error.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Error.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_DT.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_DT.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_LREAL.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_LREAL.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_LTIME.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_LTIME.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_String.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Generic_To_String.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Date_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Date_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Numeric_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Numeric_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Time_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Is_Time_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Malloc_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Malloc_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Matching_Generics.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Matching_Generics.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Murmur3_Hash.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Murmur3_Hash.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Murmur_Scramble.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Murmur_Scramble.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_String_Convertable_Generic.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_String_Convertable_Generic.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_String_To_Any.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_String_To_Any.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Swap_Generics.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/Functions/F_Swap_Generics.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/POUs/MAIN.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/POUs/MAIN.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/PlcTask.TcTTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/PlcTask.TcTTO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetCompany.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetCompany.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetTitle.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetTitle.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetVersion.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/Project Information/F_GetVersion.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/TcDynCollections.plcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/TcDynCollections.plcproj -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/UML/Collections Interfaces.TcCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/UML/Collections Interfaces.TcCD -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/Version/Global_Version.TcGVL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/Version/Global_Version.TcGVL -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_standard/3.4.5.0/tc2_standard.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_standard/3.4.5.0/tc2_standard.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_system/3.6.4.0/tc2_system.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_system/3.6.4.0/tc2_system.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_utilities/3.8.1.0/tc2_utilities.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc2_utilities/3.8.1.0/tc2_utilities.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc3_module/3.4.5.0/tc3_module.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollections/_Libraries/beckhoff automation gmbh/tc3_module/3.4.5.0/tc3_module.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Array_List_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Array_List_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Array_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Array_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Deque_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Deque_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Hash_Map_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Hash_Map_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Hash_Set_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Hash_Set_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_List_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_List_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Ordered_Hash_Map_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Ordered_Hash_Map_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Ordered_Hash_Set_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Ordered_Hash_Set_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Queue_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Queue_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Stack_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Stack_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Map_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Map_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Multiset_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Multiset_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Set_Test_Suite.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/Function Blocks/FB_Tree_Set_Test_Suite.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/MAIN.TcPOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/POUs/MAIN.TcPOU -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/PlcTask.TcTTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/PlcTask.TcTTO -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/TcDynCollectionsTest.plcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/TcDynCollectionsTest.plcproj -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/TcDynamicCollectionsRefactor.tmcRefac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/TcDynamicCollectionsRefactor.tmcRefac -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_standard/3.4.5.0/tc2_standard.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_standard/3.4.5.0/tc2_standard.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_system/3.6.4.0/tc2_system.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_system/3.6.4.0/tc2_system.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_utilities/3.8.1.0/tc2_utilities.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc2_utilities/3.8.1.0/tc2_utilities.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc3_module/3.4.5.0/tc3_module.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/beckhoff automation gmbh/tc3_module/3.4.5.0/tc3_module.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/fisothemes/twincat dynamic collections/1.0.8/tcdyncollections_1.0.8.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/fisothemes/twincat dynamic collections/1.0.8/tcdyncollections_1.0.8.library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/base interfaces/3.5.2.0/base_itfs.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/base interfaces/3.5.2.0/base_itfs.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/cmperrors2 interfaces/3.5.12.0/cmperrors2_itfs.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/cmperrors2 interfaces/3.5.12.0/cmperrors2_itfs.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/sysdir/3.5.12.0/sysdir.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/sysdir/3.5.12.0/sysdir.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/sysfile/3.5.9.0/sysfile.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/sysfile/3.5.9.0/sysfile.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/systypes2 interfaces/3.5.4.0/systypes_itfs.compiled-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/system/systypes2 interfaces/3.5.4.0/systypes_itfs.compiled-library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/www.tcunit.org/tcunit/1.2.0.0/tcunit.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TcDynCollectionsTest/_Libraries/www.tcunit.org/tcunit/1.2.0.0/tcunit.library -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TrialLicense.tclrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TrialLicense.tclrs -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/TwinCat Dynamic Collections.tsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/TwinCat Dynamic Collections.tsproj -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TargetDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/_Boot/TargetDescription.xml -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig.tszip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig.tszip -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig/TcDynCollections.tpzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig/TcDynCollections.tpzip -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig/TcDynamicCollectionsRefactor.tpzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisothemes/TwinCat-Dynamic-Collections/HEAD/src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/CurrentConfig/TcDynamicCollectionsRefactor.tpzip -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_851.autostart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_851.oce: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_851.ocm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_852.autostart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_852.oce: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TwinCat Dynamic Collections/_Boot/TwinCAT RT (x64)/Plc/Port_852.ocm: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------