We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c0100 commit 1dd772bCopy full SHA for 1dd772b
docs/src/index.md
@@ -61,7 +61,7 @@ The [`±`](@ref) operator may be typed as `\pm<TAB>` (using Julia's LaTeX syntax
61
62
### Set operations
63
64
-```@repl
+```@repl more
65
1.75 ∈ 1.5±1 # \in<TAB>; can also use `in`
66
0 ∈ 1.5±1
67
1 ∈ OpenInterval(0..1)
@@ -78,3 +78,8 @@ isleftopen(2..3)
78
79
To import the [`..`](@ref) operator, use `import IntervalSets: (..)`.
80
The parantheses are necessary to avoid parsing issues.
81
+
82
+```@repl
83
+import IntervalSets: (..)
84
+import IntervalSets.(..) # This is also okay
85
+```
0 commit comments