//======================================================================
// ______ _                                 _ 
// |  _  (_)                               | |
// | | | |_  __ _ _ __ ___   ___  _ __   __| |
// | | | | |/ _` | '_ ` _ \ / _ \| '_ \ / _` |
// | |/ /| | (_| | | | | | | (_) | | | | (_| |
// |___/ |_|\__,_|_| |_| |_|\___/|_| |_|\__,_|
//======================================================================
// Revision Log
//== Current Version ===================================================
// 0.1.0
//== Revision Description ==============================================
// {VERSIONING}
// {COMMENTS}
//
// VERSIONING:
// {MAJOR.MINOR.BUGFIX.REVISION}
//
// MAJOR: major version
// MINOR: minor version
// BUGFIX: bug fix sequencial number
// REVISION: revision number (isn't part of version number)
//
// COMMENTS:
// {-} Revision description (add, modify, remove, fixed...).
// {*} Observations (additional informations like test scripts).
//== References ========================================================
// https://keepachangelog.com/en/0.3.0/
// https://semver.org/spec/v2.0.0.html
//== Revisions =========================================================

[2019-03-22]

0.1.1.3
- Fixed AbstractArrayList that broken when setted generic by constructor because elements is null.

[2019-03-12]

0.1.0.2
- Fixed HashMap empty iterator.

0.1.0.1
- Initial project version.
- Eclipse IDE and Composer Framework settings.
- Collection implements:
	- List with CollectionInterface em ArrayList, LinkedList, VectorListTest.
	- Queue with CollectionQueue on LinkedList, LinkedQueue, LoopQueue and PriorityQueue.
	- Stack with CollectionStack on ArrayStack and LinkedStack.
	- Deque with COllectionDeque on ArrayDeque and LinkedDeque.
	- Map with CollectionMap on HashMap and HashTable.
	- Base structure for simple nodes with Node and  DoubleNode for doubly structures.
* included 'PHP Unit' test scripts.