I would like to use the ..
operator for ranges, but I do not want to import all of Data.Array globally. How can I import only ‘…’ from Data.Array?
I tried
import data.Array (..)
and
import data.Array ( .. )
but PureScript doesn’t seem to understand this notation.