Exporting specifically `..` from IntervalArithmetic.jl for use in module

I would like to specifically load the .. operator from IntervalArithmetic.jl

The following don’t work:

  • using IntervalArithmetic:..
  • using IntervalArithmetic:interval
  • using IntervalArithmetic:@interval

How can I load the .. operator in my module while avoiding loading the entire package through using IntervalArithmetic?

Try using IntervalArithmetic: (..)

3 Likes

Yep that solved it. Thanks!