Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: loophp/collection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.1.0
Choose a base ref
...
head repository: loophp/collection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.2.0
Choose a head ref

Commits on Aug 25, 2020

  1. Update Unpair operation.

    drupol committed Aug 25, 2020
    Copy the full SHA
    2d7ce6e View commit details

Commits on Aug 26, 2020

  1. Add Pack operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    412734c View commit details
  2. Add Unpack operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    54a3e97 View commit details
  3. Copy the full SHA
    810bff8 View commit details
  4. Update Map operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    1702597 View commit details
  5. Update Scale operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    85db341 View commit details
  6. Update Limit operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    4578422 View commit details
  7. Add missing tests.

    drupol committed Aug 26, 2020
    Copy the full SHA
    7e15694 View commit details
  8. Update Split operation.

    drupol committed Aug 26, 2020
    Copy the full SHA
    6c3b94f View commit details

Commits on Aug 27, 2020

  1. Copy the full SHA
    d5207e3 View commit details
  2. Remove obsolete annotations

    drupol committed Aug 27, 2020
    Copy the full SHA
    8e25055 View commit details
  3. Update Slice operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    fc5baa6 View commit details
  4. Update Cycle operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    a5388d2 View commit details
  5. Update Cache operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    afbcac3 View commit details
  6. Update Filter operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    5f4d134 View commit details
  7. Update Column operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    b071823 View commit details
  8. Update Chunk operation

    drupol committed Aug 27, 2020
    Copy the full SHA
    1260974 View commit details
  9. Update Runable interface

    drupol committed Aug 27, 2020
    Copy the full SHA
    07c1c12 View commit details
  10. Update Group operation. (Fix #19)

    drupol committed Aug 27, 2020
    Copy the full SHA
    58d5f9c View commit details
  11. Update tests.

    drupol committed Aug 27, 2020
    Copy the full SHA
    18a7885 View commit details
  12. Update Group operation.

    drupol committed Aug 27, 2020
    Copy the full SHA
    6fce398 View commit details
  13. Update Flatten operation.

    drupol committed Aug 27, 2020
    Copy the full SHA
    f5ceeb8 View commit details
  14. Add IfThenElse operation.

    drupol committed Aug 27, 2020
    Copy the full SHA
    f9c0c04 View commit details

Commits on Aug 28, 2020

  1. Update Iterate constructor.

    drupol committed Aug 28, 2020
    Copy the full SHA
    01155c2 View commit details
  2. Update documentation.

    drupol committed Aug 28, 2020
    Copy the full SHA
    efccd88 View commit details
  3. Add Changelog.md.

    drupol committed Aug 28, 2020
    Copy the full SHA
    6869e40 View commit details
  4. Update Changelog.md.

    drupol committed Aug 28, 2020
    Copy the full SHA
    7daf209 View commit details
Showing with 1,953 additions and 1,055 deletions.
  1. +562 −0 CHANGELOG.md
  2. +1 −1 README.md
  3. +1 −2 docs/index.rst
  4. +84 −5 docs/pages/api.rst
  5. +0 −648 docs/pages/examples.rst
  6. +617 −44 docs/pages/usage.rst
  7. +204 −70 spec/loophp/collection/CollectionSpec.php
  8. +32 −9 src/Collection.php
  9. +3 −0 src/Contract/Collection.php
  10. +1 −3 src/Contract/Operation/Chunkable.php
  11. +1 −1 src/Contract/Operation/Cycleable.php
  12. +20 −0 src/Contract/Operation/IfThenElseable.php
  13. +2 −2 src/Contract/Operation/Limitable.php
  14. +20 −0 src/Contract/Operation/Packable.php
  15. +3 −7 src/Contract/Operation/Scaleable.php
  16. +1 −3 src/Contract/Operation/Sliceable.php
  17. +20 −0 src/Contract/Operation/Unpackable.php
  18. +0 −2 src/Contract/Transformation/Runable.php
  19. +2 −2 src/Operation/Append.php
  20. +2 −2 src/Operation/Apply.php
  21. +2 −2 src/Operation/Associate.php
  22. +4 −5 src/Operation/Cache.php
  23. +5 −7 src/Operation/Chunk.php
  24. +4 −4 src/Operation/Collapse.php
  25. +5 −7 src/Operation/Column.php
  26. +3 −3 src/Operation/Combinate.php
  27. +2 −2 src/Operation/Combine.php
  28. +2 −2 src/Operation/Compact.php
  29. +4 −4 src/Operation/Cycle.php
  30. +2 −2 src/Operation/Diff.php
  31. +3 −3 src/Operation/DiffKeys.php
  32. +2 −2 src/Operation/Distinct.php
  33. +2 −2 src/Operation/Explode.php
  34. +4 −4 src/Operation/Filter.php
  35. +2 −2 src/Operation/First.php
  36. +13 −13 src/Operation/Flatten.php
  37. +2 −2 src/Operation/Flip.php
  38. +2 −2 src/Operation/Forget.php
  39. +2 −2 src/Operation/Frequency.php
  40. +26 −19 src/Operation/Group.php
  41. +0 −2 src/Operation/Head.php
  42. +48 −0 src/Operation/IfThenElse.php
  43. +2 −2 src/Operation/Intersect.php
  44. +3 −3 src/Operation/IntersectKeys.php
  45. +2 −2 src/Operation/Intersperse.php
  46. +3 −1 src/Operation/Iterate.php
  47. +2 −2 src/Operation/Keys.php
  48. +4 −6 src/Operation/Last.php
  49. +6 −2 src/Operation/Limit.php
  50. +2 −2 src/Operation/Loop.php
  51. +16 −12 src/Operation/Map.php
  52. +3 −3 src/Operation/Merge.php
  53. +2 −2 src/Operation/Normalize.php
  54. +2 −2 src/Operation/Nth.php
  55. +2 −2 src/Operation/Only.php
  56. +33 −0 src/Operation/Pack.php
  57. +2 −2 src/Operation/Pad.php
  58. +3 −4 src/Operation/Pair.php
  59. +4 −4 src/Operation/Permutate.php
  60. +2 −2 src/Operation/Prepend.php
  61. +7 −7 src/Operation/Product.php
  62. +2 −2 src/Operation/RSample.php
  63. +2 −2 src/Operation/Random.php
  64. +2 −2 src/Operation/Reduction.php
  65. +5 −5 src/Operation/Reverse.php
  66. +12 −9 src/Operation/Scale.php
  67. +5 −5 src/Operation/Shuffle.php
  68. +2 −2 src/Operation/Since.php
  69. +2 −2 src/Operation/Skip.php
  70. +5 −5 src/Operation/Slice.php
  71. +17 −28 src/Operation/Sort.php
  72. +8 −11 src/Operation/Split.php
  73. +2 −2 src/Operation/Tail.php
  74. +2 −2 src/Operation/Times.php
  75. +2 −2 src/Operation/Transpose.php
  76. +44 −0 src/Operation/Unpack.php
  77. +5 −3 src/Operation/Unpair.php
  78. +2 −2 src/Operation/Until.php
  79. +2 −2 src/Operation/Unwrap.php
  80. +4 −4 src/Operation/Window.php
  81. +2 −2 src/Operation/Wrap.php
  82. +2 −2 src/Operation/Zip.php
  83. +1 −1 src/Transformation/Contains.php
  84. +1 −1 src/Transformation/FoldLeft.php
  85. +1 −1 src/Transformation/FoldRight.php
  86. +1 −1 src/Transformation/Implode.php
  87. +1 −1 src/Transformation/Nullsy.php
  88. +1 −1 src/Transformation/Reduce.php
  89. +3 −3 src/Transformation/Transform.php
Loading