Skip to content

Commit

Permalink
isdisjoint: add NEWS and include in the docs (JuliaLang#34460)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet authored and StefanKarpinski committed Jan 21, 2020
1 parent 46a98ad commit 3aeb3ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Build system changes
New library functions
---------------------

* The new `isdisjoint` function indicates whether two collections are disjoint ([#34427]).

New library features
--------------------
Expand Down
2 changes: 1 addition & 1 deletion base/abstractset.jl
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ end
"""
isdisjoint(v1, v2) -> Bool
Returns whether the collections `v1` and `v2` are disjoint, i.e. whether
Return whether the collections `v1` and `v2` are disjoint, i.e. whether
their intersection is empty.
!!! compat "Julia 1.5"
Expand Down
1 change: 1 addition & 0 deletions doc/src/base/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ Base.issubset
Base.:⊈
Base.:⊊
Base.issetequal
Base.isdisjoint
```

Fully implemented by:
Expand Down

0 comments on commit 3aeb3ec

Please sign in to comment.