Skip to content

Commit 2ee8c87

Browse files
authored
doc: add cross references in subset-related operators (#39750)
1 parent aaf2b9f commit 2ee8c87

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

base/abstractset.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ function ⊇ end
246246
247247
Determine whether every element of `a` is also in `b`, using [`in`](@ref).
248248
249+
See also [`⊊`](@ref), [`⊈`](@ref).
250+
249251
# Examples
250252
```jldoctest
251253
julia> issubset([1, 2], [1, 2, 3])
@@ -306,6 +308,8 @@ function ⊋ end
306308
307309
Determines if `a` is a subset of, but not equal to, `b`.
308310
311+
See also [`issubset`](@ref) (`⊆`), [`⊈`](@ref).
312+
309313
# Examples
310314
```jldoctest
311315
julia> (1, 2) ⊊ (1, 2, 3)
@@ -329,6 +333,8 @@ function ⊉ end
329333
330334
Negation of `⊆` and `⊇`, i.e. checks that `a` is not a subset of `b`.
331335
336+
See also [`issubset`](@ref) (`⊆`), [`⊊`](@ref).
337+
332338
# Examples
333339
```jldoctest
334340
julia> (1, 2) ⊈ (2, 3)

0 commit comments

Comments
 (0)