Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.18 KB

CHANGELOG.md

File metadata and controls

32 lines (22 loc) · 1.18 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.2.0 - 2022-07-09

Added

  • Function array_equals() that checks if both arrays have the same keys and their values are equal

1.1.1 - 2022-05-27

Added

  • Template type declaration at Equatable::equals(). PHPStorm 2022.1 now handles generics types in @method tags, and it's also helpful when using an analysis tool.
  • Missing @param tag at Option::some()
  • Missing @param tags in local functions
  • Missing @template tags in static methods of Result
  • Missing @template tags in static methods of Option

1.1.0 - 2021-10-30

Added

  • Function iterable_search() that returns the first key where the given value is equal.