Skip to content

v0.3.0

Compare
Choose a tag to compare
@thoas thoas released this 10 Jul 15:29
c43409e
  • More Go versions have been added to the CI (thks @ferhatelmas, @HaraldNordgren)
  • Add Compact (thks @poporul)
  • Add Reduce which reduces an iterable based on a function (thks @poporul)
  • Add Zip which zip two iterables (thks @HaraldNordgren)
  • Add Fill which fills an iterable with a value (thks @HaraldNordgren)
  • Add Every which returns true if every element is present in a iteratee (thks @HaraldNordgren)
  • Add Any which returns true if any element of the iterable is not empty. If the iterable is empty, return False.
  • Add All which returns true if all elements of the iterable are not empty (or if the iterable is empty)
  • Add ConvertSlice which converts a slice to a desired type
  • Add Drop which creates an array/slice with n elements dropped from the beginning (thks @spoonscen)
  • Missing documentation for Compact and Reduce (thks @alexander-yu)
  • Reduce memory usage for Uniq functions (thks @orvice)