-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Created I_Iterable interface that provides structure and improved safety for iterable data structures.
- Loading branch information
1 parent
152dd76
commit 3f54fd4
Showing
14 changed files
with
210 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/TwinCat Dynamic Collections/TcDynCollections/ITFs/Iterable/I_Iterable.TcIO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<TcPlcObject Version="1.1.0.1"> | ||
<Itf Name="I_Iterable" Id="{1bb73574-f693-03e6-321d-522590609df2}"> | ||
<Declaration><![CDATA[// Interface that defines the standard structure for indexable collections | ||
INTERFACE I_Iterable EXTENDS __SYSTEM.IQueryInterface | ||
]]></Declaration> | ||
<Property Name="_Begin" Id="{73321905-0f2e-0407-00aa-91048e6eff82}"> | ||
<Declaration><![CDATA[// Index of the first element. | ||
PROPERTY _Begin : T_Position]]></Declaration> | ||
<Get Name="Get" Id="{8d8c254e-4b6e-0859-2854-cb761631fcfe}"> | ||
<Declaration><![CDATA[]]></Declaration> | ||
</Get> | ||
</Property> | ||
<Property Name="_End" Id="{fd9a7466-3c98-02f5-23f1-a7caf2aecf29}"> | ||
<Declaration><![CDATA[// Index of the last element. | ||
PROPERTY _End : T_Position]]></Declaration> | ||
<Get Name="Get" Id="{0fcaa15c-f86d-066b-2610-50d35d581457}"> | ||
<Declaration><![CDATA[]]></Declaration> | ||
</Get> | ||
</Property> | ||
</Itf> | ||
</TcPlcObject> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters