Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dpsanders authored May 19, 2024
1 parent 526939b commit ad705e6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ julia> X = IntervalBox(1..3, 4..6)

julia> Y = IntervalBox(2..5, 2)
[2.0, 5.0

julia> (1..3) × (4..6) # \times<TAB>
[1.0, 3.0] × [4.0, 6.0]
```

We have defined `×` to be the Cartesian cross product operator, acting on `Interval`s and/or
`IntervalBox`es.


### Set operations
We treat `IntervalBox`es as sets as much as possible, and extend Julia's set operations
to act on these objects:
Expand Down

0 comments on commit ad705e6

Please sign in to comment.