Skip to content

v1.7.8 Sorting

Choose a tag to compare

@malikhan-dev malikhan-dev released this 05 Jun 16:39
· 56 commits to main since this release
f79f9ee

V1.7.8

Thor-Collection-Api

Introducing CollectSorted(). sort and collect the result by ascending or descending order. easier implementation of the heap data structure. dont repeat yourself by implementing Heap Interface everytime.

	result := From(personList).Where(func(person Person) bool {
		return person.Active == true
	}).CollectSorted(func(person Person, person2 Person) bool {
		return person.Identifier < person2.Identifier
	}, true)

Database Module

  • Minor Refactor
  • Performance Improvement
  • Dynamic Tests. (a seperated database creation and testing on each test run)
  • Code Coverage Improved