From 05863147bf5e8246c247b6577b732f5113e20834 Mon Sep 17 00:00:00 2001 From: Niklas Kaaf Date: Sat, 25 Nov 2023 10:01:35 +0100 Subject: [PATCH] - Remove development-file - Format all files --- .clang-format | 3 +- .development | 0 README.md | 19 +++++------- .../DifferenceMutableAndImmutable.ino | 2 +- .../List/ManageElements/ManageElements.ino | 10 +++---- .../List/UtilsAndHelper/UtilsAndHelper.ino | 30 +++++++++---------- library.json | 2 +- src/AbstractList.hpp | 22 +++++++------- src/DoubleLinkedList.hpp | 4 +-- src/SingleLinkedList.hpp | 4 +-- .../test_immutable_doublelinkedlist_+.cpp | 2 +- .../test_immutable_doublelinkedlist_add.cpp | 2 +- ...test_immutable_doublelinkedlist_addAll.cpp | 2 +- ..._immutable_doublelinkedlist_addAtIndex.cpp | 2 +- ...st_immutable_doublelinkedlist_addFirst.cpp | 2 +- ...est:immutable_doublelinkedlist_addLast.cpp | 2 +- ...est_immutable_doublelinkedlist_diverse.cpp | 2 +- ...st_immutable_doublelinkedlist_equality.cpp | 2 +- .../test_immutable_doublelinkedlist_get.cpp | 2 +- ...test_immutable_doublelinkedlist_remove.cpp | 2 +- .../test_immutable_list_+.cpp | 2 +- .../test_immutable_list_add.cpp | 2 +- .../test_immutable_list_addAll.cpp | 2 +- .../test_immutable_list_addAtIndex.cpp | 2 +- .../test_immutable_list_addFirst.cpp | 2 +- .../test:immutable_list_addLast.cpp | 2 +- .../test_immutable_list_diverse.cpp | 2 +- .../test_immutable_list_equality.cpp | 2 +- .../test_immutable_list_get.cpp | 2 +- .../test_immutable_list_remove.cpp | 2 +- .../test_immutable_singlelinkedlist_+.cpp | 2 +- .../test_immutable_singlelinkedlist_add.cpp | 2 +- ...test_immutable_singlelinkedlist_addAll.cpp | 2 +- ..._immutable_singlelinkedlist_addAtIndex.cpp | 2 +- ...st_immutable_singlelinkedlist_addFirst.cpp | 2 +- ...est:immutable_singlelinkedlist_addLast.cpp | 2 +- ...est_immutable_singlelinkedlist_diverse.cpp | 2 +- ...st_immutable_singlelinkedlist_equality.cpp | 2 +- .../test_immutable_singlelinkedlist_get.cpp | 2 +- ...test_immutable_singlelinkedlist_remove.cpp | 2 +- 40 files changed, 77 insertions(+), 79 deletions(-) delete mode 100644 .development diff --git a/.clang-format b/.clang-format index 160e6c6..df5f2fd 100644 --- a/.clang-format +++ b/.clang-format @@ -38,6 +38,7 @@ CompactNamespaces: false ContinuationIndentWidth: 4 IndentCaseLabels: true IndentPPDirectives: None +InsertNewlineAtEOF: true IndentWidth: 2 KeepEmptyLinesAtTheStartOfBlocks: true MaxEmptyLinesToKeep: 1 @@ -45,7 +46,7 @@ NamespaceIndentation: None ObjCSpaceAfterProperty: false ObjCSpaceBeforeProtocolList: false PointerAlignment: Right -ReflowComments: false +ReflowComments: true SpaceAfterCStyleCast: true SpaceAfterLogicalNot: false SpaceAfterTemplateKeyword: false diff --git a/.development b/.development deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md index 0ede221..c64e837 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,13 @@ # List -![Build Status](https://github.com/nkaaf/Arduino-List/workflows/Arduino%20Library%20CI/badge.svg) -[![PlatformIO Registry](https://badges.registry.platformio.org/packages/nkaaf/library/List.svg)](https://registry.platformio.org/libraries/nkaaf/List) -[![arduino-library-badge](https://www.ardu-badge.com/badge/List.svg)](https://www.ardu-badge.com/List) +![Image indicating the latest Build Status](https://github.com/nkaaf/Arduino-List/workflows/Arduino%20Library%20CI/badge.svg "Build Status") +[![Image indicating the latest version in the PlatformIO Registry](https://badges.registry.platformio.org/packages/nkaaf/library/List.svg "PlatformIO Registry")](https://registry.platformio.org/libraries/nkaaf/List) +[![Image indicating the latest version in the Arduino Library Registry](https://www.ardu-badge.com/badge/List.svg "Arduino Library Registry")](https://www.ardu-badge.com/List) +## Intention Library to extend the Arduino Ecosystem with different List Implementations. -Documentation: [https://nkaaf.github.io/Arduino-List/](https://nkaaf.github.io/Arduino-List/) +## Documentation +The documentation can be found [here](https://nkaaf.github.io/Arduino-List/). -https://semver.org/ compliant - -## Arduino Library References - -* https://docs.arduino.cc/learn/contributions/arduino-writing-style-guide -* https://docs.arduino.cc/learn/contributions/arduino-library-style-guide -* https://arduino.github.io/arduino-cli/0.34/library-specification/ +## Trivia +This library is [Semantic Versioning 2.0.0](https://semver.org/) compliant. diff --git a/examples/List/DifferenceMutableAndImmutable/DifferenceMutableAndImmutable.ino b/examples/List/DifferenceMutableAndImmutable/DifferenceMutableAndImmutable.ino index 4c4b921..8063948 100644 --- a/examples/List/DifferenceMutableAndImmutable/DifferenceMutableAndImmutable.ino +++ b/examples/List/DifferenceMutableAndImmutable/DifferenceMutableAndImmutable.ino @@ -43,4 +43,4 @@ void setup() { Serial.println("Elements of mutable lists can be manipulate via the same variable; immutable lists cannot!"); } -void loop() {} \ No newline at end of file +void loop() {} diff --git a/examples/List/ManageElements/ManageElements.ino b/examples/List/ManageElements/ManageElements.ino index ce995ad..faba64c 100644 --- a/examples/List/ManageElements/ManageElements.ino +++ b/examples/List/ManageElements/ManageElements.ino @@ -9,18 +9,18 @@ void setup() { // Add the first element to the list int setup1 = 25; - list.add(setup1); // add() will always place the element at the end of the list. Its synonym is addLast(). addFirst() will place the element directly at the front of the list. + list.add(setup1);// add() will always place the element at the end of the list. Its synonym is addLast(). addFirst() will place the element directly at the front of the list. Serial.println("Inserted the first element"); Serial.println(); // Get the first element Serial.print("The value of the first element with the getValue() method is: "); - Serial.println(list.get(0)); // The most comfortable way to get the first elements value is to call the getValue() method. You cannot get the address of the element with the getValue() method! + Serial.println(list.get(0));// The most comfortable way to get the first elements value is to call the getValue() method. You cannot get the address of the element with the getValue() method! // Get the first element (alternative) Serial.print("The value of the first element with the [] operator is: "); - int firstElement = list[0]; // The '[]' Operator is a synonym for the getValue() method. + int firstElement = list[0];// The '[]' Operator is a synonym for the getValue() method. Serial.println(firstElement); // TODO: add getMutableValue for mutable lists @@ -42,7 +42,7 @@ void setup() { } // Remove element from list - list.remove(3); // With this, you will remove the third element of the list. + list.remove(3);// With this, you will remove the third element of the list. Serial.print("After the deletion of the third element, the list has: "); Serial.print(list.getSize()); Serial.println(" element(s)"); @@ -61,4 +61,4 @@ void setup() { Serial.println(" element(s)"); } -void loop() {} \ No newline at end of file +void loop() {} diff --git a/examples/List/UtilsAndHelper/UtilsAndHelper.ino b/examples/List/UtilsAndHelper/UtilsAndHelper.ino index 734476d..97946dd 100644 --- a/examples/List/UtilsAndHelper/UtilsAndHelper.ino +++ b/examples/List/UtilsAndHelper/UtilsAndHelper.ino @@ -35,23 +35,23 @@ void setup() { Serial.println("Inserted another element"); // Convert list to array - //int *array = list.toArray(); + // int *array = list.toArray(); //// Print every element from the new array - //Serial.print("The list contains the following values which are get by converting the list to an array: ["); - //for (int i = 0; i < list.getSize(); ++i) { - // Serial.print(array[i]); - // if (i != list.getSize() - 1) { // only add the ',' if the element is not the last; otherwise the output would be: [2,2,]; but now it is [2,2] - // Serial.print(","); - // } - //} - //Serial.println("]"); + // Serial.print("The list contains the following values which are get by converting the list to an array: ["); + // for (int i = 0; i < list.getSize(); ++i) { + // Serial.print(array[i]); + // if (i != list.getSize() - 1) { // only add the ',' if the element is not the last; otherwise the output would be: [2,2,]; but now it is [2,2] + // Serial.print(","); + // } + // } + // Serial.println("]"); //// free memory space generated by toArray(), because it is not used anymore - //free(array); + // free(array); Serial.println(); // Compare two lists - List secondList; // Create second list + List secondList;// Create second list if (list.equals(secondList)) { Serial.println("The two lists are identical."); } else { @@ -62,7 +62,7 @@ void setup() { secondList.add(setup2); // Check another time - if (list == secondList) { // The '==' operator is a synonym for the equals() method. + if (list == secondList) {// The '==' operator is a synonym for the equals() method. Serial.println("The two lists are identical."); } else { Serial.println("The two lists aren't identical."); @@ -73,7 +73,7 @@ void setup() { Serial.println("Add two more elements to the second list."); int setup3 = 12; int setup4 = 41; - secondList.add(setup3); // add two more values to the second List + secondList.add(setup3);// add two more values to the second List secondList.add(setup4); // Add one list to another @@ -84,11 +84,11 @@ void setup() { Serial.print("The list contains the following values: ["); for (int i = 0; i < list.getSize(); ++i) { Serial.print(list[i]); - if (i != list.getSize() - 1) { // only add the ',' if the element is not the last; otherwise the output would be: [2,2,]; but now it is [2,2] + if (i != list.getSize() - 1) {// only add the ',' if the element is not the last; otherwise the output would be: [2,2,]; but now it is [2,2] Serial.print(","); } } Serial.println("]"); } -void loop() {} \ No newline at end of file +void loop() {} diff --git a/library.json b/library.json index 43b3597..f8d4896 100644 --- a/library.json +++ b/library.json @@ -54,4 +54,4 @@ "LICENSE" ] } -} \ No newline at end of file +} diff --git a/src/AbstractList.hpp b/src/AbstractList.hpp index 10d4a91..1f5b045 100644 --- a/src/AbstractList.hpp +++ b/src/AbstractList.hpp @@ -165,7 +165,7 @@ class AbstractList { #if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__) /*! * @copydoc AbstractList::addAtIndex() -* @note If the list is mutable nothing happen. + * @note If the list is mutable nothing happen. */ virtual void addAtIndex(int index, T &&value) { if (this->isMutable()) { @@ -194,7 +194,7 @@ class AbstractList { /*! * @brief Add all entries from the given list at the end of the list. * @note The elements from the other list, remain untouched. -* @note If the other list is mutable and the values saved in the lists are primitives, nothing happens. + * @note If the other list is mutable and the values saved in the lists are primitives, nothing happens. * * @param list Other list to copy from. */ @@ -205,7 +205,7 @@ class AbstractList { * The original entry at this index, and followings, will be placed * directly after the entries of the given list. * @note The elements from the other list, remain untouched. - * @note If this list is mutable, ensure, that the other lists do not go out-of-scope during all operations of this list. If the other list is mutable, all values added to this lists are immutable. + * @note If this list is mutable, ensure, that the other lists do not go out-of-scope during all operations of this list. If the other list is mutable, all values added to this lists are immutable. * * @param index Index of this list, at which all entries should be added. * @param arr Array. @@ -233,7 +233,7 @@ class AbstractList { /*! * @brief Add a new entry at the beginning of the list. * @note If this list is mutable, ensure, that all variables added to the lists do not go out-of-scope during all operations of the list. - * + * * @param value Value to add. */ void addFirst(T &value) { addAtIndex(0, value); } @@ -241,7 +241,7 @@ class AbstractList { #if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__) /*! * @copydoc AbstractList::addFirst() -* @note If the list is mutable and the values saved in the list are not primitives, nothing happen. + * @note If the list is mutable and the values saved in the list are not primitives, nothing happen. */ void addFirst(T &&value) { addAtIndex(0, value); } #endif @@ -249,7 +249,7 @@ class AbstractList { /*! * @brief Add a new entry at the end of the list. * @note If this list is mutable, ensure, that all variables added to the lists do not go out-of-scope during all operations of the list. -* + * * @param value Value to add. */ void addLast(T &value) { addAtIndex(getSize(), value); } @@ -257,7 +257,7 @@ class AbstractList { #if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__) /*! * @copydoc AbstractList::addLast() -* @note If the list is mutable and the values saved in the list are not primitives, nothing happen. + * @note If the list is mutable and the values saved in the list are not primitives, nothing happen. */ void addLast(T &&value) { addAtIndex(getSize(), value); } #endif @@ -413,15 +413,15 @@ class AbstractList { /*! * @copydoc AbstractList::add() * @see add() -* @note If the list is mutable and the values saved in the list are not primitives, nothing happen. - */ + * @note If the list is mutable and the values saved in the list are not primitives, nothing happen. + */ void operator+(T &&value) { this->add(value); } #endif /*! * @copydoc AbstractList::addAll(AbstractList&) -* @note If the other list is mutable and the values saved in the lists are primitives, nothing happens. - * @see addAll(AbstractList&) + * @note If the other list is mutable and the values saved in the lists are primitives, nothing happens. + * @see addAll(AbstractList&) */ void operator+(AbstractList &list) { this->addAll(list); } }; diff --git a/src/DoubleLinkedList.hpp b/src/DoubleLinkedList.hpp index 9c99007..c045a6f 100644 --- a/src/DoubleLinkedList.hpp +++ b/src/DoubleLinkedList.hpp @@ -127,8 +127,8 @@ class DoubleLinkedList : public AbstractList { ~DoubleLinkedList() { this->clear(); } using AbstractList::addAtIndex;///'Using' the addAtIndex method, to - ///prevent name hiding of the addAtIndex - ///method from AbstractList + /// prevent name hiding of the addAtIndex + /// method from AbstractList /*! * @copydoc AbstractList::addAtIndex() diff --git a/src/SingleLinkedList.hpp b/src/SingleLinkedList.hpp index 148e546..d17b3a8 100644 --- a/src/SingleLinkedList.hpp +++ b/src/SingleLinkedList.hpp @@ -101,8 +101,8 @@ class SingleLinkedList : public AbstractList { ~SingleLinkedList() { this->clear(); } using AbstractList::addAtIndex;///'Using' the addAtIndex method, to - ///prevent name hiding of the addAtIndex - ///method from AbstractList + /// prevent name hiding of the addAtIndex + /// method from AbstractList /*! * @copydoc AbstractList::addAtIndex() diff --git a/test/test_immutable_doublelinkedlist_+/test_immutable_doublelinkedlist_+.cpp b/test/test_immutable_doublelinkedlist_+/test_immutable_doublelinkedlist_+.cpp index 1de7bf6..443c956 100644 --- a/test/test_immutable_doublelinkedlist_+/test_immutable_doublelinkedlist_+.cpp +++ b/test/test_immutable_doublelinkedlist_+/test_immutable_doublelinkedlist_+.cpp @@ -243,4 +243,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_add/test_immutable_doublelinkedlist_add.cpp b/test/test_immutable_doublelinkedlist_add/test_immutable_doublelinkedlist_add.cpp index 2da0186..20691a7 100644 --- a/test/test_immutable_doublelinkedlist_add/test_immutable_doublelinkedlist_add.cpp +++ b/test/test_immutable_doublelinkedlist_add/test_immutable_doublelinkedlist_add.cpp @@ -181,4 +181,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_addAll/test_immutable_doublelinkedlist_addAll.cpp b/test/test_immutable_doublelinkedlist_addAll/test_immutable_doublelinkedlist_addAll.cpp index 427ae85..884cc2b 100644 --- a/test/test_immutable_doublelinkedlist_addAll/test_immutable_doublelinkedlist_addAll.cpp +++ b/test/test_immutable_doublelinkedlist_addAll/test_immutable_doublelinkedlist_addAll.cpp @@ -259,4 +259,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_addAtIndex/test_immutable_doublelinkedlist_addAtIndex.cpp b/test/test_immutable_doublelinkedlist_addAtIndex/test_immutable_doublelinkedlist_addAtIndex.cpp index 1bdf372..edec0a7 100644 --- a/test/test_immutable_doublelinkedlist_addAtIndex/test_immutable_doublelinkedlist_addAtIndex.cpp +++ b/test/test_immutable_doublelinkedlist_addAtIndex/test_immutable_doublelinkedlist_addAtIndex.cpp @@ -249,4 +249,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_addFirst/test_immutable_doublelinkedlist_addFirst.cpp b/test/test_immutable_doublelinkedlist_addFirst/test_immutable_doublelinkedlist_addFirst.cpp index 545fe5c..2a26681 100644 --- a/test/test_immutable_doublelinkedlist_addFirst/test_immutable_doublelinkedlist_addFirst.cpp +++ b/test/test_immutable_doublelinkedlist_addFirst/test_immutable_doublelinkedlist_addFirst.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_addLast/test:immutable_doublelinkedlist_addLast.cpp b/test/test_immutable_doublelinkedlist_addLast/test:immutable_doublelinkedlist_addLast.cpp index 040743e..f665a0b 100644 --- a/test/test_immutable_doublelinkedlist_addLast/test:immutable_doublelinkedlist_addLast.cpp +++ b/test/test_immutable_doublelinkedlist_addLast/test:immutable_doublelinkedlist_addLast.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_diverse/test_immutable_doublelinkedlist_diverse.cpp b/test/test_immutable_doublelinkedlist_diverse/test_immutable_doublelinkedlist_diverse.cpp index f324051..c9e0979 100644 --- a/test/test_immutable_doublelinkedlist_diverse/test_immutable_doublelinkedlist_diverse.cpp +++ b/test/test_immutable_doublelinkedlist_diverse/test_immutable_doublelinkedlist_diverse.cpp @@ -109,4 +109,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_equality/test_immutable_doublelinkedlist_equality.cpp b/test/test_immutable_doublelinkedlist_equality/test_immutable_doublelinkedlist_equality.cpp index e4a2584..90fab4f 100644 --- a/test/test_immutable_doublelinkedlist_equality/test_immutable_doublelinkedlist_equality.cpp +++ b/test/test_immutable_doublelinkedlist_equality/test_immutable_doublelinkedlist_equality.cpp @@ -213,4 +213,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_get/test_immutable_doublelinkedlist_get.cpp b/test/test_immutable_doublelinkedlist_get/test_immutable_doublelinkedlist_get.cpp index c1e7277..0883e21 100644 --- a/test/test_immutable_doublelinkedlist_get/test_immutable_doublelinkedlist_get.cpp +++ b/test/test_immutable_doublelinkedlist_get/test_immutable_doublelinkedlist_get.cpp @@ -119,4 +119,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_doublelinkedlist_remove/test_immutable_doublelinkedlist_remove.cpp b/test/test_immutable_doublelinkedlist_remove/test_immutable_doublelinkedlist_remove.cpp index d6843aa..6732608 100644 --- a/test/test_immutable_doublelinkedlist_remove/test_immutable_doublelinkedlist_remove.cpp +++ b/test/test_immutable_doublelinkedlist_remove/test_immutable_doublelinkedlist_remove.cpp @@ -241,4 +241,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_+/test_immutable_list_+.cpp b/test/test_immutable_list_+/test_immutable_list_+.cpp index 535557c..a039b94 100644 --- a/test/test_immutable_list_+/test_immutable_list_+.cpp +++ b/test/test_immutable_list_+/test_immutable_list_+.cpp @@ -243,4 +243,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_add/test_immutable_list_add.cpp b/test/test_immutable_list_add/test_immutable_list_add.cpp index c05ec53..ede2db8 100644 --- a/test/test_immutable_list_add/test_immutable_list_add.cpp +++ b/test/test_immutable_list_add/test_immutable_list_add.cpp @@ -181,4 +181,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_addAll/test_immutable_list_addAll.cpp b/test/test_immutable_list_addAll/test_immutable_list_addAll.cpp index ea14173..b08247c 100644 --- a/test/test_immutable_list_addAll/test_immutable_list_addAll.cpp +++ b/test/test_immutable_list_addAll/test_immutable_list_addAll.cpp @@ -259,4 +259,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_addAtIndex/test_immutable_list_addAtIndex.cpp b/test/test_immutable_list_addAtIndex/test_immutable_list_addAtIndex.cpp index 53e5429..985be8b 100644 --- a/test/test_immutable_list_addAtIndex/test_immutable_list_addAtIndex.cpp +++ b/test/test_immutable_list_addAtIndex/test_immutable_list_addAtIndex.cpp @@ -249,4 +249,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_addFirst/test_immutable_list_addFirst.cpp b/test/test_immutable_list_addFirst/test_immutable_list_addFirst.cpp index 86f7406..d1b5bdd 100644 --- a/test/test_immutable_list_addFirst/test_immutable_list_addFirst.cpp +++ b/test/test_immutable_list_addFirst/test_immutable_list_addFirst.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_addLast/test:immutable_list_addLast.cpp b/test/test_immutable_list_addLast/test:immutable_list_addLast.cpp index e187f38..1bbd516 100644 --- a/test/test_immutable_list_addLast/test:immutable_list_addLast.cpp +++ b/test/test_immutable_list_addLast/test:immutable_list_addLast.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_diverse/test_immutable_list_diverse.cpp b/test/test_immutable_list_diverse/test_immutable_list_diverse.cpp index e773358..cc8cfd3 100644 --- a/test/test_immutable_list_diverse/test_immutable_list_diverse.cpp +++ b/test/test_immutable_list_diverse/test_immutable_list_diverse.cpp @@ -109,4 +109,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_equality/test_immutable_list_equality.cpp b/test/test_immutable_list_equality/test_immutable_list_equality.cpp index 5ec2961..c1b2274 100644 --- a/test/test_immutable_list_equality/test_immutable_list_equality.cpp +++ b/test/test_immutable_list_equality/test_immutable_list_equality.cpp @@ -213,4 +213,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_get/test_immutable_list_get.cpp b/test/test_immutable_list_get/test_immutable_list_get.cpp index deb5952..3b258e1 100644 --- a/test/test_immutable_list_get/test_immutable_list_get.cpp +++ b/test/test_immutable_list_get/test_immutable_list_get.cpp @@ -119,4 +119,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_list_remove/test_immutable_list_remove.cpp b/test/test_immutable_list_remove/test_immutable_list_remove.cpp index a727a50..35efcca 100644 --- a/test/test_immutable_list_remove/test_immutable_list_remove.cpp +++ b/test/test_immutable_list_remove/test_immutable_list_remove.cpp @@ -241,4 +241,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_+/test_immutable_singlelinkedlist_+.cpp b/test/test_immutable_singlelinkedlist_+/test_immutable_singlelinkedlist_+.cpp index 5419042..6bc230d 100644 --- a/test/test_immutable_singlelinkedlist_+/test_immutable_singlelinkedlist_+.cpp +++ b/test/test_immutable_singlelinkedlist_+/test_immutable_singlelinkedlist_+.cpp @@ -243,4 +243,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_add/test_immutable_singlelinkedlist_add.cpp b/test/test_immutable_singlelinkedlist_add/test_immutable_singlelinkedlist_add.cpp index a3b8cf1..7376a27 100644 --- a/test/test_immutable_singlelinkedlist_add/test_immutable_singlelinkedlist_add.cpp +++ b/test/test_immutable_singlelinkedlist_add/test_immutable_singlelinkedlist_add.cpp @@ -181,4 +181,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_addAll/test_immutable_singlelinkedlist_addAll.cpp b/test/test_immutable_singlelinkedlist_addAll/test_immutable_singlelinkedlist_addAll.cpp index 7fb597d..381c04e 100644 --- a/test/test_immutable_singlelinkedlist_addAll/test_immutable_singlelinkedlist_addAll.cpp +++ b/test/test_immutable_singlelinkedlist_addAll/test_immutable_singlelinkedlist_addAll.cpp @@ -259,4 +259,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_addAtIndex/test_immutable_singlelinkedlist_addAtIndex.cpp b/test/test_immutable_singlelinkedlist_addAtIndex/test_immutable_singlelinkedlist_addAtIndex.cpp index 1221689..cb574d0 100644 --- a/test/test_immutable_singlelinkedlist_addAtIndex/test_immutable_singlelinkedlist_addAtIndex.cpp +++ b/test/test_immutable_singlelinkedlist_addAtIndex/test_immutable_singlelinkedlist_addAtIndex.cpp @@ -249,4 +249,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_addFirst/test_immutable_singlelinkedlist_addFirst.cpp b/test/test_immutable_singlelinkedlist_addFirst/test_immutable_singlelinkedlist_addFirst.cpp index 77158ef..8fff651 100644 --- a/test/test_immutable_singlelinkedlist_addFirst/test_immutable_singlelinkedlist_addFirst.cpp +++ b/test/test_immutable_singlelinkedlist_addFirst/test_immutable_singlelinkedlist_addFirst.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_addLast/test:immutable_singlelinkedlist_addLast.cpp b/test/test_immutable_singlelinkedlist_addLast/test:immutable_singlelinkedlist_addLast.cpp index 73215f9..3259f18 100644 --- a/test/test_immutable_singlelinkedlist_addLast/test:immutable_singlelinkedlist_addLast.cpp +++ b/test/test_immutable_singlelinkedlist_addLast/test:immutable_singlelinkedlist_addLast.cpp @@ -179,4 +179,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_diverse/test_immutable_singlelinkedlist_diverse.cpp b/test/test_immutable_singlelinkedlist_diverse/test_immutable_singlelinkedlist_diverse.cpp index 85d7b6d..f52940c 100644 --- a/test/test_immutable_singlelinkedlist_diverse/test_immutable_singlelinkedlist_diverse.cpp +++ b/test/test_immutable_singlelinkedlist_diverse/test_immutable_singlelinkedlist_diverse.cpp @@ -109,4 +109,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_equality/test_immutable_singlelinkedlist_equality.cpp b/test/test_immutable_singlelinkedlist_equality/test_immutable_singlelinkedlist_equality.cpp index 692243e..b18b6a0 100644 --- a/test/test_immutable_singlelinkedlist_equality/test_immutable_singlelinkedlist_equality.cpp +++ b/test/test_immutable_singlelinkedlist_equality/test_immutable_singlelinkedlist_equality.cpp @@ -213,4 +213,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_get/test_immutable_singlelinkedlist_get.cpp b/test/test_immutable_singlelinkedlist_get/test_immutable_singlelinkedlist_get.cpp index f074fb4..62fd60d 100644 --- a/test/test_immutable_singlelinkedlist_get/test_immutable_singlelinkedlist_get.cpp +++ b/test/test_immutable_singlelinkedlist_get/test_immutable_singlelinkedlist_get.cpp @@ -119,4 +119,4 @@ void setup() { } void loop() { -} \ No newline at end of file +} diff --git a/test/test_immutable_singlelinkedlist_remove/test_immutable_singlelinkedlist_remove.cpp b/test/test_immutable_singlelinkedlist_remove/test_immutable_singlelinkedlist_remove.cpp index 9968795..db0aeb1 100644 --- a/test/test_immutable_singlelinkedlist_remove/test_immutable_singlelinkedlist_remove.cpp +++ b/test/test_immutable_singlelinkedlist_remove/test_immutable_singlelinkedlist_remove.cpp @@ -241,4 +241,4 @@ void setup() { } void loop() { -} \ No newline at end of file +}