
Small library enhances collection handling with simple linked list implementation, offering multiple creation methods for streamlined data management.
Small library which provide some collections for koltin
<dependency>
<groupId>io.github.edmondantes</groupId>
<artifactId>simple-kotlin-collections</artifactId>
<version>0.1.0</version>
</dependency>implementation("io.github.edmondantes:simple-kotlin-collections:0.1.0")implementation "io.github.edmondantes:simple-kotlin-collections:0.1.0"Class LinkedList is a simple implementation of linked list. Use can create it by different ways:
linkedListOf(a, b, c)
LinkedList(5) { index -> supplier(index) }
LinkedList(collection as Collection)
byteArrayOf(1, 2, 3).asLinkedList()Small library which provide some collections for koltin
<dependency>
<groupId>io.github.edmondantes</groupId>
<artifactId>simple-kotlin-collections</artifactId>
<version>0.1.0</version>
</dependency>implementation("io.github.edmondantes:simple-kotlin-collections:0.1.0")implementation "io.github.edmondantes:simple-kotlin-collections:0.1.0"Class LinkedList is a simple implementation of linked list. Use can create it by different ways:
linkedListOf(a, b, c)
LinkedList(5) { index -> supplier(index) }
LinkedList(collection as Collection)
byteArrayOf(1, 2, 3).asLinkedList()