Next update 1.2.0
eleev opened this issue · 0 comments
eleev commented
The next update will include the following extensions:
Added new category:
CoreImage
- HighlightFilter - the filter is originally designed for highlighting 3D objects but can be used to add this effect to images and sprites
Array
- Array+Union - unions self and the input arrays
- Array+Contains - checks if self contains the specified elements
- Array+Difference - computes differences between self and the input arrays
- Array+Intersection - computes intersection of self and the input values
Dictionary
- Dictionary+ConvenienceWrappers - adds wrappers around common operations such as
has(key: )->Bool
andeach(: (Key, Value)->())
- Dictionary+Difference - computes differences between self and the input dictionaries
- Dictionary+Union - unions self and the input dictionaries
- Dictionary+Intersection - computes intersection of self and the input Dictionaries
- Dictionary+Map - custom mapping function
- Dictionary+ConvenienceWrappers - adds wrappers around common operations such as