Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benhar-dev committed Apr 4, 2023
1 parent 223965a commit a4ec6eb
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 98 deletions.
1 change: 0 additions & 1 deletion docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

- Interfaces

- [I_Enumerable](i-enumerable.md)
- [I_Collection](i-collection.md)
- [I_Queue](i-queue.md)
- [I_Stack](i-stack.md)
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# 0.4.0

- Remove I_Enumerable interface to mobject-enumerable
- Added mobject-enumerable 0.0.0

# 0.3.0

- Added I_Enumerable interface
Expand Down
12 changes: 6 additions & 6 deletions docs/i-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## Definition

| | |
| ----------- | ------------------------------- |
| Namespace | mobject-collections |
| Library | mobject-collections |
| Inheritance | [I_Enumerable](i-enumerable.md) |
| Implements | |
| | |
| ----------- | ------------------------------------------------------------------------------------ |
| Namespace | mobject-collections |
| Library | mobject-collections |
| Inheritance | [I_Enumerable](https://mobject-dev-team.github.io/mobject-enumerable/#/i-enumerable) |
| Implements | |

## Remarks

Expand Down
32 changes: 0 additions & 32 deletions docs/i-enumerable.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name: "",
loadSidebar: true,
subMaxLevel: 3,
repo: "https://github.com/benhar-dev/mobject-collections",
repo: "https://github.com/Mobject-Dev-Team/mobject-collections",
coverpage: false,
"flexible-alerts": {
style: "callout",
Expand Down
8 changes: 4 additions & 4 deletions docs/linkedlist.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ foundNode := linkedList.FindLast(value1);

### GetEnumerator()

Returns a forward enumerator for the linked list. More information on the enumerators can be found [here](i-forwardenumerator.md)
Returns a forward enumerator for the linked list. More information on the enumerators can be found [here](https://mobject-dev-team.github.io/mobject-enumerable/#/i-forward-enumerator)

!> Enumerators are \_\_NEW objects, which means you must dispose of any enumerators you make once you are finished using them. Failure to do so will result in a memory leak.

Expand All @@ -399,9 +399,9 @@ N/A

#### Return

| Datatype | Description |
| --------------------------------------------- | --------------------------------------------------------------- |
| [I_ForwardEnumerator](i-forwardenumerator.md) | The method will return a forward enumerator for the linked list |
| Datatype | Description |
| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- |
| [I_ForwardEnumerator](https://mobject-dev-team.github.io/mobject-enumerable/#/i-forward-enumerator) | The method will return a forward enumerator for the linked list |

#### Usage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
<DefaultResolution>mobject-disposable, * (mobject)</DefaultResolution>
<Namespace>mobject_disposable</Namespace>
</PlaceholderReference>
<PlaceholderReference Include="mobject-enumerable">
<DefaultResolution>mobject-enumerable, * (mobject)</DefaultResolution>
<Namespace>mobject_enumerable</Namespace>
</PlaceholderReference>
<PlaceholderReference Include="mobject-events">
<DefaultResolution>mobject-events, * (mobject)</DefaultResolution>
<Namespace>mobject_events</Namespace>
Expand All @@ -77,6 +81,12 @@
<PlaceholderReference Include="TcUnit">
<DefaultResolution>TcUnit, * (www.tcunit.org)</DefaultResolution>
<Namespace>TcUnit</Namespace>
<Parameters>
<Parameter ListName="GVL_PARAM_TCUNIT" xmlns="">
<Key>LOGEXTENDEDRESULTS</Key>
<Value>FALSE</Value>
</Parameter>
</Parameters>
</PlaceholderReference>
</ItemGroup>
<ItemGroup>
Expand All @@ -86,11 +96,14 @@
</ItemGroup>
<ItemGroup>
<PlaceholderResolution Include="mobject-collections">
<Resolution>mobject-collections, 0.3.0 (mobject)</Resolution>
<Resolution>mobject-collections, 0.4.0 (mobject)</Resolution>
</PlaceholderResolution>
<PlaceholderResolution Include="mobject-disposable">
<Resolution>mobject-disposable, 0.3.1 (mobject)</Resolution>
</PlaceholderResolution>
<PlaceholderResolution Include="mobject-enumerable">
<Resolution>mobject-enumerable, 0.0.0 (mobject)</Resolution>
</PlaceholderResolution>
<PlaceholderResolution Include="mobject-events">
<Resolution>mobject-events, 0.4.1 (mobject)</Resolution>
</PlaceholderResolution>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Company>mobject</Company>
<Released>false</Released>
<Title>mobject-collections</Title>
<ProjectVersion>0.3.0</ProjectVersion>
<ProjectVersion>0.4.0</ProjectVersion>
<DefaultNamespace>mobject-collections</DefaultNamespace>
<Placeholder>mobject-collections</Placeholder>
<Author>mobject dev team</Author>
Expand All @@ -39,6 +39,10 @@
<DefaultResolution>mobject-disposable, * (mobject)</DefaultResolution>
<Namespace>mobject_disposable</Namespace>
</PlaceholderReference>
<PlaceholderReference Include="mobject-enumerable">
<DefaultResolution>mobject-enumerable, * (mobject)</DefaultResolution>
<Namespace>mobject_enumerable</Namespace>
</PlaceholderReference>
<PlaceholderReference Include="mobject-events">
<DefaultResolution>mobject-events, * (mobject)</DefaultResolution>
<Namespace>mobject_events</Namespace>
Expand All @@ -55,7 +59,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\Collections\Nodes" />
<Folder Include="Interfaces\Enumerators" />
<Folder Include="Interfaces\Collections" />
<Folder Include="Interfaces\Events" />
<Folder Include="LinkedList" />
Expand All @@ -73,9 +76,6 @@
<Compile Include="Interfaces\Collections\I_Collection.TcIO">
<SubType>Code</SubType>
</Compile>
<Compile Include="Interfaces\Collections\I_Enumerable.TcIO">
<SubType>Code</SubType>
</Compile>
<Compile Include="Interfaces\Collections\I_LinkedList.TcIO">
<SubType>Code</SubType>
</Compile>
Expand All @@ -88,9 +88,6 @@
<Compile Include="Interfaces\Collections\Nodes\I_LinkedListNode.TcIO">
<SubType>Code</SubType>
</Compile>
<Compile Include="Interfaces\Enumerators\I_ForwardEnumerator.TcIO">
<SubType>Code</SubType>
</Compile>
<Compile Include="Interfaces\Events\I_LinkedListChangedEvent.TcIO">
<SubType>Code</SubType>
</Compile>
Expand Down

0 comments on commit a4ec6eb

Please sign in to comment.