Skip to content

Update collections.md #696

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion collections.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
git: 7b138d0703c77f8b1771d6f628166f35b515a006
git: 2a0504f3579486c15577b685ba9dcca3a13e088b
---

# Коллекции
Expand Down Expand Up @@ -109,6 +109,7 @@ $translated = $collection->toLocale('es');
- [diffAssocUsing](#method-diffassocusing)
- [diffKeys](#method-diffkeys)
- [doesntContain](#method-doesntcontain)
- [doesntContainStrict](#method-doesntcontainstrict)
- [dot](#method-dot)
- [dump](#method-dump)
- [duplicates](#method-duplicates)
Expand Down Expand Up @@ -816,6 +817,11 @@ $collection->doesntContain('product', 'Bookcase');

Метод `doesntContain` использует "не строгое" сравнение при проверке значений элементов, что означает, что строка с целым значением будет считаться равной целому числу того же значения.

<a name="method-doesntcontainstrict"></a>
#### `doesntContainStrict()`

Этот метод имеет ту же сигнатуру, что и метод [doesntContain](#method-doesntcontain); однако все значения сравниваются с использованием «строгих» сравнений.

<a name="method-dot"></a>
#### `dot()`

Expand Down