go-funk v0.3.0 Release Notes

Release Date: 2018-07-10 // almost 6 years ago
    • ๐Ÿ‘ท 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)