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

**URL:** https://discourse.julialang.org/t/exporting-specifically-from-intervalarithmetic-jl-for-use-in-module/48217
**Category:** General Usage
**Tags:** question, package
**Created:** [October 12, 2020, 12:20pm UTC](https://discourse.julialang.org/t/exporting-specifically-from-intervalarithmetic-jl-for-use-in-module/48217 "2020-10-12T12:20:16Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![kapple](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kapple/32/218915_2.png) [@kapple](https://discourse.julialang.org/u/kapple)
#### Post date: [October 12, 2020, 12:20pm UTC](https://discourse.julialang.org/t/exporting-specifically-from-intervalarithmetic-jl-for-use-in-module/48217/1 "2020-10-12T12:20:16Z")

</div>

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`?

---

<div class="post-metadata">

### Author: ![baggepinnen](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/baggepinnen/32/693_2.png) [@baggepinnen](https://discourse.julialang.org/u/baggepinnen)
#### Post date: [October 12, 2020, 12:26pm UTC](https://discourse.julialang.org/t/exporting-specifically-from-intervalarithmetic-jl-for-use-in-module/48217/2 "2020-10-12T12:26:11Z")

</div>

> [@kapple](#):
>
> using IntervalArithmetic:..

Try `using IntervalArithmetic: (..)`

---

<div class="post-metadata">

### Author: ![kapple](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kapple/32/218915_2.png) [@kapple](https://discourse.julialang.org/u/kapple)
#### Post date: [October 12, 2020, 12:26pm UTC](https://discourse.julialang.org/t/exporting-specifically-from-intervalarithmetic-jl-for-use-in-module/48217/3 "2020-10-12T12:26:49Z")

</div>

Yep that solved it. Thanks!
