1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00

Explicitly list Data.Range’s exports.

This commit is contained in:
Rob Rix 2017-06-24 10:46:45 -04:00
parent 062a7ca2bb
commit 21878f2e80

View File

@ -1,5 +1,10 @@
{-# LANGUAGE DeriveAnyClass #-}
module Data.Range where
module Data.Range
( Range(..)
, rangeLength
, offsetRange
, intersectsRange
) where
import Data.Semigroup
import Prologue