Skip to content

Commit 650b70c

Browse files
committed
Merge pull request #12529 from mbauman/mb/docintset
Update IntSet docs: only positive Ints
2 parents 210f15d + 4ee85f0 commit 650b70c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

base/docs/helpdb.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -7932,7 +7932,11 @@ doc"""
79327932
```rst
79337933
.. IntSet([itr])
79347934
7935-
Construct a sorted set of the integers generated by the given iterable object, or an empty set. Implemented as a bit string, and therefore designed for dense integer sets. Only non-negative integers can be stored. If the set will be sparse (for example holding a single very large integer), use :obj:`Set` instead.
7935+
Construct a sorted set of positive ``Int``\ s generated by the given iterable
7936+
object, or an empty set. Implemented as a bit string, and therefore designed
7937+
for dense integer sets. Only ``Int``\ s greater than 0 can be stored. If the
7938+
set will be sparse (for example holding a few very large integers), use
7939+
:obj:`Set` instead.
79367940
```
79377941
"""
79387942
IntSet

doc/stdlib/collections.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,11 @@ Set-Like Collections
895895

896896
.. Docstring generated from Julia source
897897
898-
Construct a sorted set of the integers generated by the given iterable object, or an empty set. Implemented as a bit string, and therefore designed for dense integer sets. Only non-negative integers can be stored. If the set will be sparse (for example holding a single very large integer), use :obj:`Set` instead.
898+
Construct a sorted set of positive ``Int``\ s generated by the given iterable
899+
object, or an empty set. Implemented as a bit string, and therefore designed
900+
for dense integer sets. Only ``Int``\ s greater than 0 can be stored. If the
901+
set will be sparse (for example holding a few very large integers), use
902+
:obj:`Set` instead.
899903

900904
.. function:: union(s1,s2...)
901905
∪(s1,s2...)

0 commit comments

Comments
 (0)